gulp-npm-script-sync

gulp-npm-script-sync ====================

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
gulp-npm-script-sync
1211.1.07 years ago9 years agoMinified + gzip package size for gulp-npm-script-sync in KB

Readme

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

```javascript // gulpfile.js var gulp = require('gulp'); var sync = require('gulp-npm-script-sync');
// your gulpfile contents
sync(gulp);
Using the configurations:
```javascript
// 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']
});