You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes it is helpful to be able to call existing command line tools from gulp.
4
+
5
+
There are 2 ways to handle this: node's [`child_process`](https://nodejs.org/api/child_process.html)
6
+
built-in module or [`gulp-exec`](https://github.com/robrich/gulp-exec) if you need to integrate the
7
+
command with an existing pipeline.
8
+
9
+
```js
10
+
'use strict';
11
+
12
+
var cp =require('child_process');
13
+
var gulp =require('gulp');
14
+
15
+
gulp.task('reset', function() {
16
+
// In gulp 4, you can return a child process to signal task completion
0 commit comments