2.0.0
Code Refactoring
- all: move demo app to own folder and improve build tools (504499b)
Features
- all: making @IgorMinar happy all the way (it's just angular!) (061c648)
BREAKING CHANGES
- all: rename UMD bundled file from
ng-scrollreveal.min.js
tong-scrollreveal.umd.js
- all: rename package from
ng2-scrollreveal
tong-scrollreveal
to conform with new Angular Naming Guidelines.
This only affect how you install and import the library (no actual breaking changes in code).
Before:
npm install --save ng2-scrollreveal
...
import { NgsRevealModule } from 'ng2-scrollreveal';
After:
npm install --save ng-scrollreveal
...
import { NgsRevealModule } from 'ng-scrollreveal';