Skip to content
This repository has been archived by the owner on Mar 10, 2021. It is now read-only.

Commit

Permalink
chore: Add license and copy readme during package
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Kindle committed Apr 10, 2018
1 parent 858cc41 commit 477e4ce
Show file tree
Hide file tree
Showing 4 changed files with 182 additions and 11 deletions.
14 changes: 14 additions & 0 deletions LICENSE
@@ -0,0 +1,14 @@
Copyright (c) 2018 Hyland Software, Inc.

The following license applies to all parts of this software except as documented below:

====
The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
====

All files located in the node_modules directory are externally maintained libraries used by this software which have their own licenses; we recommend you read them, as their terms may differ from the terms above.
14 changes: 6 additions & 8 deletions README.md
Expand Up @@ -125,6 +125,12 @@ Follow these instructions to run the demo app.
3. Run `ng serve` to serve the project from a live-updating server.
4. Go to `localhost:4200` to see the demo site
## Tips
* If you want to fade between two elements without shrinking and growing,
add `position:absolute` and `max-height: [some-height]px` to the proper elements.
See the cat picture in the demo site for an example.
## Contributing
Contributions are welcome! Continue reading for instructions on how to contribute.
Expand All @@ -136,11 +142,3 @@ Want to contribute, but not sure where to start? Here are some suggestions
* Take a look at [animate.css](https://github.com/daneden/animate.css) for inspiration. You can also use the transitions on that site as a starting point for your animations
* Make some emphasis transitions. Currently all animations run when the element is added to a view. There could be plenty of uses for animations that transition from an active to inactive state, or for emphasizing elements.
* Currently, all animations grow and shrink in height, but not in width. See if shrinking width in the current animations works well, or add separate animations that shrink on the X axis.
### Deploying
The deploy script will not work for anyone who is not signed in to my firebase account. If there is a change to the demo app, tag me (Benjamin Kindle) in an issue.
## Tips
* If you want to fade between two elements without shrinking and growing,
add `position:absolute` and `max-height: [some-height]px` to the proper elements.
See the cat picture in the demo site for an example.
160 changes: 159 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Expand Up @@ -6,11 +6,10 @@
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"deploy": "firebase deploy --project ngx-animations-demo",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"packagr": "ng-packagr -p libs/ngx-animations/package.json",
"packagr": "ng-packagr -p libs/ngx-animations/package.json && copyfiles README.md dist/libs/ngx-animations/",
"commit": "git-cz",
"affected:apps": "./node_modules/.bin/nx affected apps",
"affected:build": "./node_modules/.bin/nx affected build",
Expand Down Expand Up @@ -57,7 +56,9 @@
"@types/node": "~6.0.60",
"codelyzer": "^4.2.1",
"commitizen": "^2.9.6",
"copyfiles": "^2.0.0",
"core-js": "^2.4.1",
"cp": "^0.2.0",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
Expand Down

0 comments on commit 477e4ce

Please sign in to comment.