feat: update the package output of build.sh to APF v6 (#22808)
PR Close #22808
This commit is contained in:
@ -3,8 +3,12 @@
|
||||
"version": "0.0.0-PLACEHOLDER",
|
||||
"description": "Angular - the compiler library",
|
||||
"main": "./bundles/compiler.umd.js",
|
||||
"module": "./esm5/compiler.js",
|
||||
"es2015": "./esm2015/compiler.js",
|
||||
"module": "./fesm5/compiler.js",
|
||||
"es2015": "./fesm2015/compiler.js",
|
||||
"esm5": "./esm5/compiler.js",
|
||||
"esm2015": "./esm2015/compiler.js",
|
||||
"fesm5": "./fesm5/compiler.js",
|
||||
"fesm2015": "./fesm2015/compiler.js",
|
||||
"typings": "./compiler.d.ts",
|
||||
"author": "angular",
|
||||
"license": "MIT",
|
||||
|
@ -16,7 +16,7 @@ const globals = {
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
entry: '../../dist/packages-dist/compiler/esm5/compiler.js',
|
||||
entry: '../../dist/packages-dist/compiler/fesm5/compiler.js',
|
||||
dest: '../../dist/packages-dist/compiler/bundles/compiler.umd.js',
|
||||
format: 'umd',
|
||||
exports: 'named',
|
||||
|
@ -2,6 +2,10 @@
|
||||
"name": "@angular/compiler/testing",
|
||||
"typings": "./testing.d.ts",
|
||||
"main": "../bundles/compiler-testing.umd.js",
|
||||
"module": "../esm5/testing.js",
|
||||
"es2015": "../esm2015/testing.js"
|
||||
"module": "../fesm5/testing.js",
|
||||
"es2015": "../fesm2015/testing/testing.js",
|
||||
"esm5": "../esm5/testing/testing.js",
|
||||
"esm2015": "../esm2015/testing/testing.js",
|
||||
"fesm5": "../fesm5/testing.js",
|
||||
"fesm2015": "../fesm2015/testing.js"
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ const globals = {
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
entry: '../../../dist/packages-dist/compiler/esm5/testing.js',
|
||||
entry: '../../../dist/packages-dist/compiler/fesm5/testing.js',
|
||||
dest: '../../../dist/packages-dist/compiler/bundles/compiler-testing.umd.js',
|
||||
format: 'umd',
|
||||
exports: 'named',
|
||||
|
Reference in New Issue
Block a user