2

我在角度 7.2.13。在命令“ng build --prod”之后我得到一个错误:

$ ng build --prod

Date: 2019-04-18T11:50:54.572Z
Hash: 87e16a832fe7eaf96031
Time: 91438ms
chunk {0} runtime.b57bf819d5bdce77f1c7.js (runtime) 1.41 kB [entry] [rendered]
chunk {1} es2015-polyfills.9bd4f46a9b972fb5c7b6.js (es2015-polyfills) 56.4 kB [initial] [rendered]
chunk {2} main.01281eab5e13b865ee55.js (main) 1.17 MB [initial] [rendered]
chunk {3} polyfills.f1a86b50434b1a515c5a.js (polyfills) 41 kB [initial] [rendered]
chunk {4} styles.504a1c33fb09fcab2835.css (styles) 80 bytes [initial] [rendered]
chunk {scripts} scripts.5f11b62514f5238edd2a.js (scripts) 612 kB [entry] [rendered]

来自 Terser
无效分配的 scripts.5f11b62514f5238edd2a.js 中的错误 [scripts.5f11b62514f5238edd2a.js:21,32]

我已经尝试在 package.json 中将 terser 更改为 3.14.1,因为其他线程说要做或通过 npm 安装 terser。我还尝试安装 terser 版本 3.16.1,因为线程说它解决了来自 terser 的错误。

但这些都不起作用......

这只是我尝试的一个例子:

包.json:

"devDependencies": {
    ---
    "terser": "3.14.1",
    ---
  }

包锁.json:

"terser": {
      "version": "3.14.1",
      "resolved": "https://registry.npmjs.org/terser/-/terser-3.14.1.tgz",
       ---

我想构建我的应用程序,但我不能因为这个错误......

4

1 回答 1

3

最后我发现了问题。这是一个 .js 文件,位于我的项目中(在资产中的 js 目录中),并且未使用此文件。我删除了它,然后它起作用了!

我通过创建一个新的 Angular 项目并将粘贴文件逐步复制到其中并在每个文件之后进行 ng build --prod 来发现这一点。我能够确定这种方法是哪个犯了更简洁的错误。

于 2019-04-27T18:25:07.760 回答