Skip to content

Commit

Permalink
'peg' is now a default gulp task.
Browse files Browse the repository at this point in the history
  • Loading branch information
armish committed Jun 9, 2015
1 parent 6fe648d commit 5e02adb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ You can iterate more quickly on JavaScript with the following:

```
npm install gulp -g # Make sure you have gulp installed.
gulp peg # Only needs to be run when
# changing querylanguage.pegjs
gulp # Compile the JS and start the automatic
# compiler and live-reloader.
```
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ gulp.task('staticlibs', function() {

// Default task which compiles the JS and then watches the JS and CSS for
// changes.
gulp.task('default', ['watch', 'js', 'sass']);
gulp.task('default', ['watch', 'js', 'sass', 'peg']);

// Build production resources and copy them into the serving directory.
gulp.task('prod', ['peg', 'build', 'staticlibs', 'sass']);
Expand Down

0 comments on commit 5e02adb

Please sign in to comment.