gulp-exec-task
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

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')
));

Readme

Keywords

none

Package Sidebar

Install

npm i gulp-exec-task

Weekly Downloads

0

Version

1.0.3

License

ISC

Unpacked Size

6.46 kB

Total Files

7

Last publish

Collaborators

  • aitthi