Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 242 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 242 Bytes

Usage

var gulp = require('gulp');

gulp.task('watch', function() {

  var restart = require('gulp-restart');

  // will restart the entire gulp on every file change
  gulp.watch(['src/**/*'], restart);

});

That's it.