How to use the task function from gulp-shell
Find comprehensive JavaScript gulp-shell.task code examples handpicked from public code repositorys.
668 669 670 671 672 673 674 675 676 677 678 679
}); /** * Startup mongodb on local host for development. */ gulp.task('mongo-develop', shell.task([ 'mongod' ]));
7
2
1
+ 9 other calls in file
GitHub: zk33/actless
331 332 333 334 335 336 337 338 339
} gulp.task("actless:ts:watch", watchTS); // webpack =================================================== const runWebpack = shell.task(["npx webpack --mode production"]); gulp.task("actless:webpack", runWebpack); const watchWebpack = shell.task(["npx webpack --mode production -w"]); gulp.task("actless:webpack:watch", watchWebpack);
0
0
1
+ 24 other calls in file
72 73 74 75 76 77 78 79 80 81 82 83
gzip: true })) .pipe(gulp.dest('./build/css')); }); gulp.task('set-ulimit', shell.task([ 'ulimit -n 10240' ])); gulp.task('test', function () {
0
0
1
+ 4 other calls in file
16 17 18 19 20 21 22 23 24 25 26
const templatePath = "./templates"; const destFolder = "./"; gulp.task( "sass-to-css", shell.task([ //'node-sass --include-path scss scss/tutorial.scss css/tutorial.css' "node-sass scss -o css", ]) );
0
0
1
+ 4 other calls in file
gulp-shell.task is the most popular function in gulp-shell (50 examples)