gulp-overwatch

1.0.5 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i gulp-overwatch

Weekly Downloads

1

Version

1.0.5

License

Apache-2.0

Last publish

Collaborators

  • netatwork-de