feat: update the package output of build.sh to APF v6 (#22808)

PR Close #22808
This commit is contained in:
Igor Minar
2018-03-15 14:13:13 -07:00
parent d54615d555
commit ce63dc6f95
69 changed files with 238 additions and 108 deletions

View File

@ -2,7 +2,11 @@
"name": "@angular/animations/browser",
"typings": "./browser.d.ts",
"main": "../bundles/animations-browser.umd.js",
"module": "../esm5/browser.js",
"es2015": "../esm2015/browser.js",
"module": "../fesm5/browser.js",
"es2015": "../fesm2015/browser/browser.js",
"esm5": "../esm5/browser/browser.js",
"esm2015": "../esm2015/browser/browser.js",
"fesm5": "../fesm5/browser.js",
"fesm2015": "../fesm2015/browser.js",
"sideEffects": false
}

View File

@ -16,7 +16,7 @@ const globals = {
};
module.exports = {
entry: '../../../dist/packages-dist/animations/esm5/browser.js',
entry: '../../../dist/packages-dist/animations/fesm5/browser.js',
dest: '../../../dist/packages-dist/animations/bundles/animations-browser.umd.js',
format: 'umd',
exports: 'named',

View File

@ -2,6 +2,10 @@
"name": "@angular/animations/browser/testing",
"typings": "./testing.d.ts",
"main": "../../bundles/platform-browser-animations-testing.umd.js",
"module": "../../esm5/animations/testing.js",
"es2015": "../../esm2015/animations/testing.js"
"module": "../../fesm5/animations/testing.js",
"es2015": "../../fesm2015/animations/testing.js",
"esm5": "../../esm5/animations/testing.js",
"esm2015": "../../esm2015/animations/testing.js",
"fesm5": "../../fesm5/animations/testing.js",
"fesm2015": "../../fesm2015/animations/testing.js"
}

View File

@ -18,7 +18,7 @@ const globals = {
};
module.exports = {
entry: '../../../../dist/packages-dist/animations/esm5/browser/testing.js',
entry: '../../../../dist/packages-dist/animations/fesm5/browser/testing.js',
dest: '../../../../dist/packages-dist/animations/bundles/animations-browser-testing.umd.js',
format: 'umd',
exports: 'named',

View File

@ -3,8 +3,12 @@
"version": "0.0.0-PLACEHOLDER",
"description": "Angular - animations integration with web-animationss",
"main": "./bundles/animations.umd.js",
"module": "./esm5/animations.js",
"es2015": "./esm2015/animations.js",
"module": "./fesm5/animations.js",
"es2015": "./fesm2015/animations.js",
"esm5": "./esm5/animations.js",
"esm2015": "./esm2015/animations.js",
"fesm5": "./fesm5/animations.js",
"fesm2015": "./fesm2015/animations.js",
"typings": "./animations.d.ts",
"author": "angular",
"license": "MIT",

View File

@ -17,7 +17,7 @@ const globals = {
};
module.exports = {
entry: '../../dist/packages-dist/animations/esm5/animations.js',
entry: '../../dist/packages-dist/animations/fesm5/animations.js',
dest: '../../dist/packages-dist/animations/bundles/animations.umd.js',
format: 'umd',
exports: 'named',