1.0.3 • Published 5 years ago

gulp-exec-task v1.0.3

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

Gulp task helpers

Gulp exec bin multiprocessing

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js.

Installation is done using the npm install command:

$ npm install -D gulp-exec-task

Examples

import { parallel, series, task } from 'gulp';
import { execTask } from 'gulp-exec-task';


task('serve:site', done => {
	execTask(
		'node_modules/@nestjs/cli/bin/nest.js',
		[ 'start', '--watch' ]
	)(done),
	execTask(
		'/bin/bash',
		['-c', 'cd portal && ng build --watch']
	)(done);
});

task('start:dev', series(
	parallel('serve:site')
));
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago