diff --git a/gulpfile.js b/gulpfile.js index 018621a..8d53e81 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -47,4 +47,14 @@ gulp.task('firefox', function() { gulp.task('default', function(cb) { return rseq('clean', ['chrome', 'safari', 'firefox'], cb) -}) \ No newline at end of file +}) + +gulp.task('watch', function() { + gulp.watch(['./src/lib/**/*', + './src/icons/**/*', + './src/inject.js', + './src/inject.css'], ['default']) + gulp.watch(['./src/manifest.json'], ['chrome']) + gulp.watch(['./src/Info.plist'], ['safari']) + gulp.watch(['./src/firefox.js', './src/package.json'], ['firefox']) +})