About 11,700,000 results
Open links in new tab
  1. gulp command not found - error after installing gulp

    259 I've installed Gulp both globally and locally using npm install gulp npm install gulp -g npm install gulp-util npm install gulp-util -g When try to run gulp I get 'gulp' is not recognized as an …

  2. javascript - How to debug a Gulp task? - Stack Overflow

    Oct 14, 2016 · How do I debug a gulp task defined in my gulpfile.js with a debugger such as the Google Chrome debugger, stepping through the task's code line by line?

  3. How to fix "ReferenceError: primordials is not defined" in Node.js

    Apr 30, 2019 · Origin of the problem This issue stems from the fact that [email protected] depends on graceful-fs@^3.0.0 which monkeypatches Node.js fs module. This used to work with Node.js …

  4. gulp - Gulpjs combine two tasks into a single task - Stack Overflow

    Jun 16, 2014 · I currently have two tasks, that both compile sass files. I would still like to concat the two directories into separate files but it seems that it would be more maintainable if I could …

  5. npm - How do I install gulp 4 - Stack Overflow

    Oct 30, 2015 · 52 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 available via the …

  6. javascript - What are the differences between Grunt, Gulp.js and …

    Dec 15, 2015 · Gulp reads a file, and does all transformations on the datastream, and only writes once all manipulations have been done. It means it's async and faster than grunt. And I …

  7. javascript - Running a shell command from gulp - Stack Overflow

    Apr 8, 2015 · I would like to run a shell command from gulp, using gulp-shell. I see the following idiom being used the gulpfile. Is this the idiomatic way to run a command from a gulp task? var …

  8. How to run Gulp tasks sequentially one after the other

    Apr 3, 2014 · 415 By default, gulp runs tasks simultaneously, unless they have explicit dependencies. This isn't very useful for tasks like clean, where you don't want to depend, but …

  9. installation - 'gulp' is not recognized - Stack Overflow

    Jan 13, 2015 · npm install -g gulp and then npm install --save-dev gulp I'm seeing the folders and files, but when I run gulp -v in cmd I get the following: " 'gulp' is not recognized as an internal …

  10. How to run a gulp task from another task? - Stack Overflow

    Practically half that at 38 ms For a total difference of 23 ms Now why this is the case? I honestly don't know enough about gulp to say, but let's say method 2 is clearly the more …