gulp command not found

后端 未结 8 1421
萌比男神i
萌比男神i 2020-12-07 02:19

Windows 10 pro x64

I ran the following commands

npm install --global gulp-cli
npm init

Then I changed directory to my project:

8条回答
  •  被撕碎了的回忆
    2020-12-07 02:53

    I managed to fix this problem using simple 3 commands found from https://gulpjs.com/

    npm install gulp-cli -g

    npm install gulp -D

    npx -p touch nodetouch gulpfile.js

    Hope it helps someone else.

    ps: it is not mandatory to use the 3rd command in order to fix the problem.

提交回复
热议问题