つぎのような npm スクリプトを作成したのですが、期待通りに動作しません。
json
1"scripts": { 2 "hoge": "concurrently \"nodemon --watch postcss.config.js --exec \"postcss src/style/base.css -o public/style/base.css -w\"\"" 3}
実行結果↓
terminal
1PS C:\Users\akihiro\work\project\diary> yarn hoge 2yarn run v1.22.5 3$ concurrently "nodemon --watch postcss.config.js --exec "postcss src/style/base.css -o public/style/base.css -w"" 4[1] 'src' �́A�����R�}���h�܂��͊O���R�}���h�A 5[1] ����\�ȃv���O�����܂��̓o�b�` �t�@�C���Ƃ��ĔF������Ă��܂���B 6[1] src/style/base.css exited with code 1 7[0] [nodemon] 2.0.6 8[0] [nodemon] to restart at any time, enter `rs` 9[0] [nodemon] watching path(s): postcss.config.js 10[0] [nodemon] watching extensions: js,mjs,json 11[0] [nodemon] starting `postcss`
この npm スクリプトは、ダブルクオートのなかのダブルクオートのなかでダブルクオートをつかっています。そして、たぶん、ダブルクオートのエスケープの仕方が間違っています。しかし、どのように修正すればいいのかわかりません。
どのようにしたら動くのか、わかるかたがいれば教えてくださると助かります。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/22 09:18