From a74523a0ee6c4f047783aeef90635cacddb7d2d8 Mon Sep 17 00:00:00 2001 From: Kazunori Kajihiro Date: Thu, 15 May 2014 02:59:22 +0900 Subject: [PATCH] Change watch task to watch src/**/* --- gulpfile.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 8d53e81..8f41b6f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -50,11 +50,5 @@ gulp.task('default', function(cb) { }) 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']) + gulp.watch(['./src/**/*'], ['default']) })