Package Exports
- angular-animations
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (angular-animations) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Angular-Animations
Angular Animations utility library for Angular 4.2+
Prerequisites
Make sure you import BrowserAnimationModule in your angular app.
npm i @angular/animations@latest --saveImport BrowserAnimationsModule from @angular/platform-browser/animations in your root NgModule
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'@NgModule({
declarations: [
...
],
imports: [
...
BrowserAnimationsModule
],
})
export class AppModule { }Installation and Usage
npm i angular-animations --saveBasic usage
- to do
Running Demo App
npm startAuthors
- Chris Filipowski - filipows
License
This project is licensed under the MIT License - see the LICENSE file for details