myproject@1.0.0 构建脚本失败 'webpack'

Failed at the myproject@1.0.0 build script 'webpack'

我正在使用 universal-starter 作为 backbone。

当我运行npm start时,我得到了错误:

npm ERR! Darwin 15.6.0
npm ERR! argv "/Users/hongbo-miao/.nvm/versions/node/v6.3.1/bin/node" "/Users/hongbo-miao/.nvm/versions/node/v6.3.1/bin/npm" "run" "build"
npm ERR! node v6.3.1
npm ERR! npm  v3.10.5
npm ERR! code ELIFECYCLE
npm ERR! myproject@1.0.0 build: `webpack`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the myproject@1.0.0 build script 'webpack'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the myproject package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     webpack
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs myproject
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls myproject
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/hongbo-miao/projects/myproject/npm-debug.log

npm ERR! Darwin 15.6.0
npm ERR! argv "/Users/hongbo-miao/.nvm/versions/node/v6.3.1/bin/node" "/Users/hongbo-miao/.nvm/versions/node/v6.3.1/bin/npm" "start"
npm ERR! node v6.3.1
npm ERR! npm  v3.10.5
npm ERR! code ELIFECYCLE
npm ERR! myproject@1.0.0 prestart: `npm run build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the myproject@1.0.0 prestart script 'npm run build'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the myproject package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     npm run build
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs myproject
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls myproject
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/hongbo-miao/projects/myproject/npm-debug.log

我尝试了here提到的walkaround方法,它让webpack回到2.1.0-beta.22版本

npm uninstall webpack --save-dev
npm install webpack@2.1.0-beta.22 --save-dev

但是,我还是遇到了这个问题。

是否还有其他可能导致此问题的原因?谢谢

对于大多数人来说,问题可能是因为您更新到最新的 webpack@2.1.0-beta.23(有重大更改)而您还没有更新 webpack.config.ts .

所以你可以做到

npm uninstall webpack --save-dev
npm install webpack@2.1.0-beta.22 --save-dev

然而,我的错误是我从

styles: [
  require('./app.component.scss')
],

styleUrls: ['./app.component.scss'],

但是我没有正确设置webpack,所以当我改回来时,现在又可以了。

所以我猜只要webpack.config.ts出错就会出现这个错误。就是没说清楚哪里错了