バックボーンとしてユニバーサルスターターを使用しています。
を実行する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
しかし、私はまだこの問題を抱えています。
この問題を引き起こす可能性のあるものは他にありますか? ありがとう