tinesoft / ngx-wow

Angular module for WOW.js: a customizable library to reveal animations when you scroll.
https://tinesoft.github.io/ngx-wow
MIT License
32 stars 7 forks source link

feat(core): update to `Angular v6.x.x` and higher #21

Closed tinesoft closed 6 years ago

tinesoft commented 6 years ago

BREAKING CHANGE: forRoot() on NgwWowModule has been removed as no longer necessary

Before:

import {NgwWowModule} from 'ngx-wow';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [NgwWowModule.forRoot()],
  bootstrap: [AppComponent]
})
export class AppModule {
}

After:


import {NgwWowModule} from 'ngx-wow';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [NgwWowModule],
  bootstrap: [AppComponent]
})
export class AppModule {
}
coveralls commented 6 years ago

Coverage Status

Coverage decreased (-1.0%) to 94.595% when pulling 1302f4039c039c3873867dd4a2df1f8a3bc172ac on feat-ng6 into ec56d5e7bac6fc89cee788a85d2a60fa9edff719 on master.