npm 上的 Parallelshell 模块不是 运行。可以做什么?

Parallelshell module not running on npm. What can be done?

这是 package.joson 文件的脚本我的 onchange 和 parallelshell 模块已完全更新。

    ```
"scripts": {
"start": "npm run watch:all",
"test": "echo \"Error: no test specified\" && exit 1",
"lite": "lite-server",
"scss": "node-sass -o css/ css/",
"watch:scss": "onchange \"css/*.scss\" -- npm run scss",
"watch:all": "parallelshell \"npm run watch:scss\" \"npm run lite\""
},
```

If you want to run the code on MAC or linux replace /" with single quote(').

当我运行这段代码时出现这样的错误。 请给我一个解决方案。

把parallelshell的版本改成3.0.1就可以了

要做到这一点 运行 在 cmd 上执行此命令:

npm uninstall parallelshell
npm install --save-dev parallelshell@3.01