How do I install gulp 4

后端 未结 11 1183
慢半拍i
慢半拍i 2020-12-30 18:32

I\'ve been using gulp-watch. The current version of gulp-watch relies on the call gulp.parrallel. This call is only available from gulp 4.

However gulp 4 is not avai

11条回答
  •  灰色年华
    2020-12-30 19:27

    Gulp has removed the 4.0 branch from their GitHub repository, so the previous way of installing using npm install gulpjs/gulp.git#4.0 --save-dev no longer works.

    They state in their README that the correct way to install gulp 4.0 is to run the command:

    npm install gulp@next

提交回复
热议问题