1.0.5 • Published 8 years ago

gulp-overwatch v1.0.5

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
8 years ago

NPM version

A gulp task for updating your local dependencies installed by jspm-local endpoint. It monitors the project directories of local dependencies for changes. When a change is detected, the local dependencies are updated using gulp-jspm-local.

Combined with gulp-watch, this can be used to recompile the main solution whenever a dependency changes.

Installation

Install gulp-overwatch using npm into your global or local repository.

npm install gulp-overwatch --save-dev

Usage

Setup a gulp task overwatch using this code:

var gulp = require('gulp');
var overwatch = require('gulp-overwatch');
var browserSync = require('browser-sync');

gulp.task('_overwatch', function() {
	return overwatch.watchProjects(browserSync.reload);
});

gulp.task('overwatch', ['_overwatch', 'watch']);

License

Apache 2.0

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago