从 a 中获取以下脚本部分package.json
:
"scripts":{
"sass:watch": "npm run sass -- -w ./src/public/stylesheets -r --source-map true",
"livereload": "live-reload --port 9091 ./src/**/*",
"dev:watch" : "npm run sass:watch; npm run livereload"
}
我怎样才能成功地让任务sass:watch
和livereload
任务从任务中运行,而不会相互阻塞dev:watch
?
目前,当我运行blocks时。npm run dev:watch
sass:watch
livereload
如果我对它们重新排序,则会出现同样的问题。