gulp-npm-script-sync

1.1.0 • Public • Published

gulp-npm-script-sync Build Status

Syncs all your gulp tasks into the scripts section of your package.json. For instance: gulp watch can be run as npm run watch. npm will use the local gulp inside your node_modules folder, so there is no need to install gulp globally to run the tasks. inspired by this stackoverflow question.

install

npm install --save-dev gulp-npm-script-sync

usage

// gulpfile.js
var gulp = require('gulp');
var sync = require('gulp-npm-script-sync');
 
// your gulpfile contents
 
sync(gulp);

Using the configurations:

// gulpfile.js
var gulp = require('gulp');
var sync = require('gulp-npm-script-sync');
 
// your gulpfile contents
 
sync(gulp, {
  path: 'path/to/package.json',
  excluded: ['task1', 'task2']
});

Readme

Keywords

none

Package Sidebar

Install

npm i gulp-npm-script-sync

Weekly Downloads

7

Version

1.1.0

License

MIT

Last publish

Collaborators

  • austinpray