Skip to content

2.0.0

Compare
Choose a tag to compare
@tinesoft tinesoft released this 08 Mar 20:22
· 68 commits to master since this release

Code Refactoring

  • all: move demo app to own folder and improve build tools (504499b)

Features

BREAKING CHANGES

  • all: rename UMD bundled file from ng-scrollreveal.min.js to ng-scrollreveal.umd.js
  • all: rename package from ng2-scrollreveal to ng-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';