Проблема с запуском скрипта Parallelshell Nodejs - PullRequest
0 голосов
/ 24 ноября 2018

В моем файле package.json у меня есть следующие сценарии:

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

Всякий раз, когда я запускаю свой код, я получаю это сообщение об ошибке:

 crs@1.0.0 start /home/hazem/crs
> npm run watch:all


> crs@1.0.0 watch:all /home/hazem/crs
> parallelshell 'npm run watch:sass' 'npm run lite'

child_process.js:422
    throw new ERR_INVALID_ARG_TYPE('options.cwd', 'string', options.cwd);
    ^

TypeError [ERR_INVALID_ARG_TYPE]: The "options.cwd" property must be of type string. Received type function
    at normalizeSpawnArguments (child_process.js:422:11)
    at spawn (child_process.js:537:38)
    at /home/hazem/crs/node_modules/parallelshell/index.js:104:17
    at Array.forEach (<anonymous>)
    at Object.<anonymous> (/home/hazem/crs/node_modules/parallelshell/index.js:100:6)
    at Module._compile (internal/modules/cjs/loader.js:722:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:733:10)
    at Module.load (internal/modules/cjs/loader.js:620:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:560:12)
    at Function.Module._load (internal/modules/cjs/loader.js:552:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! crs@1.0.0 watch:all: `parallelshell 'npm run watch:sass' 'npm run lite'`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the crs@1.0.0 watch:all 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!     /home/hazem/.npm/_logs/2018-11-24T19_19_24_809Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! crs@1.0.0 start: `npm run watch:all`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the crs@1.0.0 start 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!     /home/hazem/.npm/_logs/2018-11-24T19_19_24_823Z-debug.log

Итак, в этом случае,В чем может быть проблема?что-то не так со сценарием?Или ошибка в скрипте Parallelshell в nodejs?

Ответы [ 2 ]

0 голосов
/ 14 августа 2019

Это работает для меня, так как я сталкиваюсь с подобными проблемами. Parallelshell 3.2.2 не справляется с моим узлом, поэтому я должен понизить его

0 голосов
/ 25 ноября 2018

Существует проблема с Parallelshell, которую необходимо исправить вручную;

перейдите к файлу:

node_modules/parallelshell/index.js

Затем измените эту строку:

cwd: process.versions.node < '8.0.0' ? process.cwd : process.cwd(),

На это:

cwd: parseInt(process.versions.node) < 8 ? process.cwd : process.cwd(),

Готово!

...