build(animations): adjust animations/browser source to new standard for automatic build (#15043)
This commit is contained in:

committed by
Chuck Jazdzewski

parent
195b863ea4
commit
21a18d6ceb
@ -7,15 +7,13 @@
|
||||
*/
|
||||
|
||||
export default {
|
||||
entry:
|
||||
'../../../../dist/packages-dist/platform-browser/@angular/platform-browser/animations/testing.es5.js',
|
||||
dest:
|
||||
'../../../../dist/packages-dist/platform-browser/bundles/platform-browser-animations-testing.umd.js',
|
||||
entry: '../../../../dist/packages-dist/animations/@angular/animations/browser/testing.es5.js',
|
||||
dest: '../../../../dist/packages-dist/animations/bundles/animations-browser-testing.umd.js',
|
||||
format: 'umd',
|
||||
moduleName: 'ng.platformBrowser.testing',
|
||||
moduleName: 'ng.animations.browser.testing',
|
||||
globals: {
|
||||
'@angular/core': 'ng.core',
|
||||
'@angular/common': 'ng.common',
|
||||
'@angular/platform-browser': 'ng.platformBrowser'
|
||||
'@angular/animations': 'ng.animations'
|
||||
}
|
||||
};
|
||||
|
@ -7,7 +7,7 @@
|
||||
*/
|
||||
import {AUTO_STYLE, AnimationPlayer, NoopAnimationPlayer, ɵStyleData} from '@angular/animations';
|
||||
|
||||
import {AnimationDriver} from '../src/render/animation_driver';
|
||||
import {AnimationDriver} from '../../src/render/animation_driver';
|
||||
|
||||
/**
|
||||
* @experimental Animation support is experimental.
|
||||
|
@ -1,16 +1,15 @@
|
||||
{
|
||||
"extends": "./tsconfig-build",
|
||||
"extends": "../../tsconfig-build",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../../dist/packages-dist/animations",
|
||||
"paths": {
|
||||
"@angular/animations": ["../../../dist/packages-dist/animations"]
|
||||
"@angular/animations": ["../../dist/packages/animations"]
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"browser/testing/index.ts",
|
||||
"../../../node_modules/@types/hammerjs/index.d.ts",
|
||||
"../../../node_modules/@types/jasmine/index.d.ts",
|
||||
"../../../node_modules/zone.js/dist/zone.js.d.ts"
|
||||
"index.ts",
|
||||
"../../../../node_modules/@types/hammerjs/index.d.ts",
|
||||
"../../../../node_modules/@types/jasmine/index.d.ts",
|
||||
"../../../../node_modules/zone.js/dist/zone.js.d.ts"
|
||||
],
|
||||
"angularCompilerOptions": {
|
||||
"strictMetadataEmit": true
|
||||
|
Reference in New Issue
Block a user