Angular 显示的 CLI 构建文件大小输出与磁盘上的实际不匹配
Angular CLI build file size output shown not matching with actual on disk
我正在使用 Angular CLI (1.2.6) 和 Angular(4.3.2) 和 运行 以下命令
ng serve --aot --prod --proxy-config config/proxy.config.json
或
ng build --aot --prod --proxy-config config/proxy.config.json
如果你看到下面的输出 vendor..bundle.js** 显示 4.59 MB 但是如果我打开 dist 文件夹并且检查,它显示 1.47 MB 在磁盘上。
也是如此
- vendor.**.bundle.js - 显示 (4.59 MB),在磁盘上 (1.47 MB)
- main.**.bundle.js - 显示 (1.89MB),磁盘 (870KB)
所以想知道,为什么这有区别?
[HPM] Subscribed to http-proxy events: [ 'error', 'close' ]
Hash: c030f10843de67c2fe52
Time: 145608ms
chunk {0} polyfills.cf0c1911723ba2bc9e0d.bundle.js (polyfills) 253 kB {4} [initial] [rendered]
chunk {1} main.56a2048fe2f1df9b3bfb.bundle.js (main) 1.89 MB {3} [initial] [rendered]
chunk {2} styles.dcf18dcb7e819103f605.bundle.css (styles) 228 bytes {4} [initial] [rendered]
chunk {3} vendor.ae04ef2adeac9f77347c.bundle.js (vendor) 4.59 MB [initial] [rendered]
chunk {4} inline.7a0ff2515f1bf65b1641.bundle.js (inline) 0 bytes [entry] [rendered]
资产大小修复已完成,是版本 1.3.0(当前为 RC)的一部分
找这个here which will link to this commit
@angular/cli: rewrite stats output to properly show the asset size
我正在使用 Angular CLI (1.2.6) 和 Angular(4.3.2) 和 运行 以下命令
ng serve --aot --prod --proxy-config config/proxy.config.json
或
ng build --aot --prod --proxy-config config/proxy.config.json
如果你看到下面的输出 vendor..bundle.js** 显示 4.59 MB 但是如果我打开 dist 文件夹并且检查,它显示 1.47 MB 在磁盘上。
也是如此- vendor.**.bundle.js - 显示 (4.59 MB),在磁盘上 (1.47 MB)
- main.**.bundle.js - 显示 (1.89MB),磁盘 (870KB)
所以想知道,为什么这有区别?
[HPM] Subscribed to http-proxy events: [ 'error', 'close' ]
Hash: c030f10843de67c2fe52
Time: 145608ms
chunk {0} polyfills.cf0c1911723ba2bc9e0d.bundle.js (polyfills) 253 kB {4} [initial] [rendered]
chunk {1} main.56a2048fe2f1df9b3bfb.bundle.js (main) 1.89 MB {3} [initial] [rendered]
chunk {2} styles.dcf18dcb7e819103f605.bundle.css (styles) 228 bytes {4} [initial] [rendered]
chunk {3} vendor.ae04ef2adeac9f77347c.bundle.js (vendor) 4.59 MB [initial] [rendered]
chunk {4} inline.7a0ff2515f1bf65b1641.bundle.js (inline) 0 bytes [entry] [rendered]
资产大小修复已完成,是版本 1.3.0(当前为 RC)的一部分
找这个here which will link to this commit
@angular/cli: rewrite stats output to properly show the asset size