根据这篇文章,我试图用树摇晃来构建我的测试应用程序。 http://blog.mgechev.com/2016/06/26/tree-shaking-angular2-production-build-rollup-javascript/
构建脚本运行正常,但是当我使用bundle.js时,我遇到了运行时错误。
zone.js@0.6.12?main=browser:461 Unhandled Promise rejection: Observable$1.from is not a function ;
Zone: angular ; Task: Promise.then ; Value: TypeError: Observable$1.from is not a function(…)
Observable $ 1.from来自dist \ bundle.es2015.js
dist\bundle.es2015.js 48604 return Observable$1.from(this.checks)
dist\bundle.es2015.js 48624 return Observable$1.from(this.checks)
dist\bundle.es2015.js 48697 return Observable$1.from(canActivate)
dist\bundle.es2015.js 48714 return Observable$1.from(canDeactivate)
此功能源于
node_modules\@angular\router\esm\src\router.js 361 return Observable.from(this.checks)
node_modules\@angular\router\esm\src\router.js 381 return Observable.from(this.checks)
node_modules\@angular\router\esm\src\router.js 454 return Observable.from(canActivate)
node_modules\@angular\router\esm\src\router.js 471 return Observable.from(canDeactivate)
当我使用汇总生成dist \ bundle.es2015.js
时如果我通过browserify-js构建没有树震动的应用程序,则此函数显示为Observable_1.from(),应用程序无错误地工作。
我认为可能是Angular2 zone.js对Observable $ 1过敏所以我手动将所有Observable $ 1更改为bundle.es2015.js中的Observable_1然后运行
"es5": "tsc --target es5 --allowJs dist/bundle.es2015.js --out dist/bundle.js",
然后我得到了这个
Unhandled Promise rejection: Observable_1.from is not a function ;
Zone: angular ; Task: Promise.then ; Value: TypeError: Observable_1.from is not a function(…)
有人能告诉我这是因为汇总错误还是错过了什么?
这是构建脚本
"scripts": {
"clean": "rm -rf dist",
"typings": "typings install",
"serve": "http-server . -p 5557",
"postinstall": "npm run typings",
"build": "tsc -p tsconfig.json",
"rollup": "rollup -f iife -c -o dist/bundle.es2015.js",
"es5": "tsc --target es5 --allowJs dist/bundle.es2015.js --out dist/bundle.js",
"minify": "uglifyjs dist/bundle.js --screw-ie8 --compress --mangle --output dist/bundle.min.js",
"build_prod": "npm run clean && npm run build && npm run rollup && npm run es5 && npm run minify"
}
rollup.config.js和tsconfig.json与上面的链接相同。