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,6 +2,10 @@
"name": "@angular/service-worker/config",
"typings": "./index.d.ts",
"main": "../bundles/service-worker-config.umd.js",
"module": "../esm5/config/index.js",
"es2015": "../esm15/config/index.js"
"module": "../fesm5/config/index.js",
"es2015": "../fesm15/config/index.js",
"esm5": "../esm5/config/index.js",
"esm2015": "../esm2015/config/index.js",
"fesm5": "../fesm5/config/index.js",
"fesm2015": "../fesm2015/config/index.js"
}

View File

@ -12,7 +12,7 @@ const sourcemaps = require('rollup-plugin-sourcemaps');
const globals = {};
module.exports = {
entry: '../../../dist/packages-dist/service-worker/esm5/config.js',
entry: '../../../dist/packages-dist/service-worker/fesm5/config.js',
dest: '../../../dist/packages-dist/service-worker/bundles/service-worker-config.umd.js',
format: 'umd',
exports: 'named',