gulp-npm-script-sync

v1.1.0
gulp-npm-script-sync ====================

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']
});
npm i gulp-npm-script-sync

Metadata

  • MIT
  • Whatever
  • Austin Pray
  • released 3/22/2016

Downloads

Maintainers