所以我正在npm包脚本中运行任务,但是我想在中传递watch选项npm start
。
这有效:
"scripts": {
"scss": "node-sass src/style.scss dist/style.css -w"
}
这不会编译,监视或引发任何错误:
"scripts": {
"scss": "node-sass src/style.scss dist/style.css",
"start": "parallelshell \"npm run scss -- -w\""
}
没有并行shell或没有简写都无法工作。
我认为问题是运行脚本在引号中传递了额外的参数,因此命令如下所示:
node-sass src/style.scss dist/style.css "-w"
我希望它可以在不添加任何依赖的情况下工作。我想念什么?
顺便说一句,我在Windows 10中,使用命令提示符/ git bash。
我认为,对于较小的快速项目,最简单的方法是打开一个新的bash窗口并粘贴: