Skip to content

Commit

Permalink
ignore bower_components
Browse files Browse the repository at this point in the history
Don't track files in `bower_components`, so users can opt to pull in 3rd party libs via bower without crashing the watch process do to too many files
  • Loading branch information
w33ble committed Apr 19, 2014
1 parent 025cb97 commit 47a6846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/serve/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var gutil = require('gulp-util');

module.exports = function(liveReload) {

gulp.watch(["./**/*", "!./node_modules/**/*"], function(evt){
gulp.watch(["./**/*", "!./node_modules/**/*", "!./bower_components/**/*"], function(evt){

gutil.log(gutil.colors.cyan(evt.path), 'changed');

Expand Down

0 comments on commit 47a6846

Please sign in to comment.