0.1.1 • Published 9 years ago

gulp-watch-local-packages v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

gulp-watch-local-packages

Build Status NPM version NPM downloads LICENSE

Gulp watcher to automatically update local packages when changed.

$ npm install gulp-watch-local-packages --save-dev

Example

install local packages.
$ npm install --save file:lib/domain-specific-functions
use local packages.
var query = require('domain-specific-functions').query;
automatically update local packages in node_modules on change.
var install = require('gulp-watch-local-packages');

gulp.task('default', function () {
  install('lib');
});

Debugging

$ DEBUG=gulp-watch-local-packages …

Requires

License

MIT