2

バックボーンとしてユニバーサルスターターを使用しています。

を実行する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

ここで説明した回避策を試してみました。これにより、webpack はバージョン 2.1.0-beta.22 に戻りました。

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

しかし、私はまだこの問題を抱えています。

この問題を引き起こす可能性のあるものは他にありますか? ありがとう

4

1 に答える 1

0

ほとんどの人にとって、問題は、webpack.config.tswebpack@2.1.0-beta.23をまだ更新していないのに、最新に更新した (重大な変更がある)ことが原因である可能性があります。

だからあなたはすることができます

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に間違いがあると、このエラーが発生すると思います。どこが間違っているのかはっきりとはわかりません。

于 2016-09-30T16:26:54.280 に答える