Skip to content

Gulp task for automating the update of your local dependencies installed by jspm-local endpoint

License

Notifications You must be signed in to change notification settings

Netatwork-de/gulp-overwatch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Gulp task for automating the update of your local dependencies installed by jspm-local endpoint

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published