0

这是我的设置:

Angular CLI: 6.0.8
Node: 8.10.0
OS: win32 x64
Angular: 5.2.11
... animations, common, compiler, compiler-cli, core, forms
... http, language-service, platform-browser
... platform-browser-dynamic, platform-server, router

Package                      Version
------------------------------------------------------
@angular-devkit/architect    0.6.8
@angular-devkit/core         0.6.8
@angular-devkit/schematics   0.6.8
@angular/cli                 6.0.8
@schematics/angular          0.6.8
@schematics/update           0.6.8
rxjs                         5.5.11
typescript                   2.4.2

我试过了:

  • 构建
  • ng build --prod
  • ng 构建 --environment=prod
  • ng build --target=production --environment=prod
  • ng build --prod --env=prod
  • npm run build 等。

我现在完全不知道为什么没有建立 dist,如果有人可以提供帮助,我将不胜感激

4

2 回答 2

0

感谢您的回答,但我的问题的解决方案有点尴尬......我正在通过 jenkins 构建 dist 文件夹,并在我的脚本中复制了一个 package.json 文件,因为我复制的每个 package.json 文件都指向在 dist 构建之前使用不同的服务器 - 因此所有更新都被旧的 package.json 文件覆盖(我忘了更新这个!!)......我告诉过你这有点尴尬 - 但谢谢你的时间不过,欣赏它

于 2018-06-18T12:17:26.647 回答
0

使用 Angular 6,您需要 RxJS 6。

从文档:

6.0.0 (2018-05-03)

依赖更新

@angular/core 现在取决于

  • 打字稿 2.7
  • RxJS 6.0.0
  • tslib 1.9.0

@angular/platform-server 现在依赖于

  • 多米诺骨牌 2.0

https://github.com/angular/angular/blob/master/CHANGELOG.md#dependency-updates

于 2018-06-12T00:32:13.133 回答