0
$ yarn start

Failed to compile.

Cannot read property 'compilation' of undefined

error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
error Command failed with signal "SIGTERM".
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
ERROR: "start-js" exited with 1.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

我正在使用 Ubuntu 18.04.4 LTS。有时它通常在重新启动后工作,我已经匹配了所有节点、npm 和纱线版本,它很好。我已经尝试删除node_modules. 有时它也会显示此错误。

{ [Error: EPIPE: broken pipe, write] errno: -32, code: 'EPIPE', syscall: 'write' } 

package.json scripts

"start-js": "react-scripts start",
"start": "HTTPS=true PORT=8100 REACT_APP_OPEN_TO_URL=https://xyz.University.com/localhost npm-run-all -p watch-css start-js",
4

1 回答 1

0

你需要安装这个插件指定你的 webpack 版本

npm install --save-dev uglifyjs-webpack-plugin@1

有关更多信息,您可以参考此网址https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues/360

于 2020-06-25T05:49:40.110 回答