Skip to content

Commit

Permalink
README.md: Change order of 'default' task dep
Browse files Browse the repository at this point in the history
With proper error handling, this keeps `gulp.watch` running, even when the build steps fail.

See also https://github.com/felixrabe/gulp-setup for my own setup.
  • Loading branch information
felixrabe committed Jun 13, 2014
1 parent ce5025f commit dbd7509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ gulp.task('watch', function() {
});

// The default task (called when you run `gulp` from cli)
gulp.task('default', ['scripts', 'images', 'watch']);
gulp.task('default', ['watch', 'scripts', 'images']);

```

Expand Down

0 comments on commit dbd7509

Please sign in to comment.