前提・実現したいこと
npm
のESLint
を導入した
$ npm run eslint
を実行したときに出るELIFECYCLEのエラーを消したい
発生している問題・エラーメッセージ
$ node_modules/eslint/bin/eslint.js js/*
を実行するとESLint
のエラーのみ表示されるが、package.json
に以下を定義して
json
1// ...省略 2 "scripts": { 3 "eslint": "eslint js/*" 4 },
$ npm run eslit
をするとESLintの併せて以下のエラーが出る
npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! template_web@1.0.0 eslint: `eslint js/*` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the template_web@1.0.0 eslint script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
出力されたログ
0 info it worked if it ends with ok 1 verbose cli [ '/usr/local/bin/node', '/usr/local/bin/npm', 'run', 'eslint' ] 2 info using npm@6.14.4 3 info using node@v12.16.3 4 verbose run-script [ 'preeslint', 'eslint', 'posteslint' ] 5 info lifecycle template_web@1.0.0~preeslint: template_web@1.0.0 6 info lifecycle template_web@1.0.0~eslint: template_web@1.0.0 7 verbose lifecycle template_web@1.0.0~eslint: unsafe-perm in lifecycle true 8 verbose lifecycle template_web@1.0.0~eslint: PATH: /usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/Users/username/dev/template_web/node_modules/.bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin 9 verbose lifecycle template_web@1.0.0~eslint: CWD: /Users/username/dev/template_web 10 silly lifecycle template_web@1.0.0~eslint: Args: [ '-c', 'eslint public/src/js/*' ] 11 silly lifecycle template_web@1.0.0~eslint: Returned: code: 1 signal: null 12 info lifecycle template_web@1.0.0~eslint: Failed to exec eslint script 13 verbose stack Error: template_web@1.0.0 eslint: `eslint public/src/js/*` 13 verbose stack Exit status 1 13 verbose stack at EventEmitter.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/index.js:332:16) 13 verbose stack at EventEmitter.emit (events.js:310:20) 13 verbose stack at ChildProcess.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js:55:14) 13 verbose stack at ChildProcess.emit (events.js:310:20) 13 verbose stack at maybeClose (internal/child_process.js:1021:16) 13 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:286:5) 14 verbose pkgid template_web@1.0.0 15 verbose cwd /Users/username/dev/template_web 16 verbose Darwin 19.4.0 17 verbose argv "/usr/local/bin/node" "/usr/local/bin/npm" "run" "eslint" 18 verbose node v12.16.3 19 verbose npm v6.14.4 20 error code ELIFECYCLE 21 error errno 1 22 error template_web@1.0.0 eslint: `eslint public/src/js/*` 22 error Exit status 1 23 error Failed at the template_web@1.0.0 eslint script. 23 error This is probably not a problem with npm. There is likely additional logging output above. 24 verbose exit [ 1, true ]
該当のソースコード
### 発生している問題・エラーメッセージ
に記載しました
試したこと
①以下に書いてあったことを実施しました
https://qiita.com/ishizukih/items/9673e709832dacaa5155
node_modulesを入れ直す rm -rf node_modules rm package-lock.json npm cache clear --force npm install
②以下に書いてあったことを実施しました
https://teratail.com/questions/221549
npm install webpack-dev-server --save-dev
補足情報(FW/ツールのバージョンなど)
参考になるかわかりませんが、npm
とnode
のversionを記載します
$ npm -v 6.14.4 $ node -v v12.16.3
npmを始めたばかりであまりよくわかっていません。
ご教授いただけますと幸いです
よろしくお願いします
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/13 09:52