私はリアクションに慣れていて、とWatson node-sdkを使用してリアクションアプリを構築しようとしています。 npm start
を実行した後、開発モードですべて正常に動作します。しかし、npm run build
以下を使ってプロダクションパッケージを作成しようとすると、エラーが発生します。create-react-app npm実行ビルドでワトソンノードを小さくできません
e:\Microsoft\Workspace\React\myapp>npm run build
> [email protected] build e:\Microsoft\Workspace\React\myapp
> react-scripts build
Creating an optimized production build...
Failed to compile.
Failed to minify the code from this file:
./node_modules/watson-developer-cloud/lib/helper.js:31
Read more here: https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#npm-run-build-fails-to-minify
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional
logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\yk\AppData\Roaming\npm-cache\_logs\2017-09-
20T09_40_36_144Z-debug.log
エラーを与えることlet missing;
あるとlet
が問題を引き起こしているように思えるライン。私はこれで何かできますか?
あなたは、ファイル./node_modules/watson-developer-cloud/lib/helper.jsからのコードの多くを示していただけますか?これはエラーの原因ですか? –
ここに行きます。 https://github.com/watson-developer-cloud/node-sdk/blob/d5909a19d8846a9e7a104242a193b7f54c69c4ca/lib/helper.js#L31 – yk1007