MacのPCで設定された、package.jsonをnpm run watch すると、
'chokidar' は、内部コマンドまたは外部コマンド、
操作可能なプログラムまたはバッチ ファイルとして認識されていません。
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! aki@1.0.0 css-watch: chokidar src/sass/ -c 'npm run css'
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the aki@1.0.0 css-watch 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\akio\AppData\Roaming\npm-cache_logs\2021-02-02T19_01_33_629Z-debug.log
aki@1.0.0 pug-watch C:\Users\akio\sample\practice_coding\node\aki
pug src/pug/ --hierarchy -o ${npm_package_config_path_dest} -w -P ' ' -E ${npm_package_config_pug_ext}
'pug' は、内部コマンドまたは外部コマンド、
操作可能なプログラムまたはバッチ ファイルとして認識されていません。
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! aki@1.0.0 pug-watch: pug src/pug/ --hierarchy -o ${npm_package_config_path_dest} -w -P ' ' -E ${npm_package_config_pug_ext}
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the aki@1.0.0 pug-watch 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\akio\AppData\Roaming\npm-cache_logs\2021-02-02T19_01_38_483Z-debug.log
aki@1.0.0 webpack-watch C:\Users\akio\sample\practice_coding\node\aki
webpack --watch
'webpack' は、内部コマンドまたは外部コマンド、
操作可能なプログラムまたはバッチ ファイルとして認識されていません。
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! aki@1.0.0 webpack-watch: webpack --watch
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the aki@1.0.0 webpack-watch 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\akio\AppData\Roaming\npm-cache_logs\2021-02-02T19_01_43_127Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! aki@1.0.0 watch: npm run css-watch & npm run pug-watch & npm run webpack-watch
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the aki@1.0.0 watch 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\akio\AppData\Roaming\npm-cache_logs\2021-02-02T19_01_43_397Z-debug.log
といったエラーが表示されます、Macで作成されたpackage.jsonはWindows10では動かないんでしょうか?
そのあと調べて、Macで書かれたシングルクオーテーションがWindowsではエラーの原因となるので、解消するために、シングルクオーテーションの代わりに"を書くという記事を見つけて、シングルクオーテーションを"に書き換えました。
すると、上記のエラーは消えました。
npm run watchをして、Sassを記述すると、次にこのようなエラーが出ました。
どのように対処すればよろしいでしょうか?
C:\Users\akio\sample\practice_coding\node\aki>npm run watch
@ watch C:\Users\akio\sample\practice_coding\node\aki
npm run css-watch & npm run pug-watch & npm run webpack-watch
@ css-watch C:\Users\akio\sample\practice_coding\node\aki
chokidar src/sass/ -c "npm run css"
Watching "src/sass/" ..
change:src\sass\page_company.scss
@ css C:\Users\akio\sample\practice_coding\node\aki
node-sass src/sass -o ${npm_package_config_path_dest}/assets/css --importer node_modules/node-sass-globbing/index.js --output-style expanded && postcss ${npm_package_config_path_dest}/assets/css/.css -o ${npm_package_config_path_dest}/assets/css/.css --no-map --use autoprefixer && csscomb ${npm_package_config_path_dest}/assets/css/*.css
Rendering Complete, saving .css file...
Wrote CSS to C:\Users\akio\sample\practice_coding\node\aki${npm_package_config_path_dest}\assets\css\style.css
Wrote 1 CSS files to C:\Users\akio\sample\practice_coding\node\aki${npm_package_config_path_dest}\assets\css
[Error: ENOENT: no such file or directory, open 'C:\Users\akio\sample\practice_coding\node\aki${npm_package_config_path_dest}\assets\css*.css'] {
errno: -4058,
code: 'ENOENT',
syscall: 'open',
path: 'C:\Users\akio\sample\practice_coding\node\aki${npm_package_config_path_dest}\assets\css*.css'
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ css: node-sass src/sass -o ${npm_package_config_path_dest}/assets/css --importer node_modules/node-sass-globbing/index.js --output-style expanded && postcss ${npm_package_config_path_dest}/assets/css/*.css -o ${npm_package_config_path_dest}/assets/css/*.css --no-map --use autoprefixer && csscomb ${npm_package_config_path_dest}/assets/css/*.css
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ css 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\akio\AppData\Roaming\npm-cache_logs\2021-02-02T20_13_28_454Z-debug.log