我在调用:
npm run ns-bundle --android --build-app --uglify
确实成功了(这里是the complete log)。
如果我导航到report
文件夹(由webpack-bundle-size-analyzer
创建) - 我会看到这两个文件:
打开html file
节目:
如您所见 - @angular的编译器仍在那里!!!
问题
1)为什么编译器还在那里? (AOT应该删除它)。如何删除它?
2)如果我将bundle.js部分悬停,它会显示我已解析的大小。那么什么是stat / parsed大小?
其他信息:
我必须说当我在文件系统中搜索bundle.js
时,我看到两个文件:
还有第二个:
webpack.config.json :http://jsbin.com/varetibaya/1/edit?html
package.json :http://jsbin.com/sajifojuki/edit?html
main.aot.file :http://jsbin.com/jimonurama/edit?html
ts.config.aot :http://jsbin.com/tatahesoma/edit?html
答案 0 :(得分:3)
@yurzui找到了问题。
已更改:
import {RouterExtensions} from "nativescript-angular";
与
import {RouterExtensions} from "nativescript-angular/router";
现在 - 包中没有编译器。
(非常感谢。)。