refactor(animations): introduce @angular/animation module (#14351)

PR Close: #14351
This commit is contained in:
Matias Niemelä
2017-01-26 11:16:51 -08:00
committed by Miško Hevery
parent baa654a234
commit 96073e51c3
56 changed files with 3983 additions and 18 deletions

View File

@ -0,0 +1,20 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export default {
entry: '../../../dist/packages-dist/animation/testing/index.js',
dest: '../../../dist/packages-dist/animation/bundles/animation-testing.umd.js',
format: 'umd',
moduleName: 'ng.animation.testing',
globals: {
'@angular/core': 'ng.core',
'@angular/animation': 'ng.animation',
'rxjs/Observable': 'Rx',
'rxjs/Subject': 'Rx'
}
};