Skip to content

Commit

Permalink
fix(app generator): comply grunt idiom detail with those in the 'READ…
Browse files Browse the repository at this point in the history
…ME.md' template
  • Loading branch information
cueedee committed May 13, 2015
1 parent 11ff636 commit b9ad708
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -559,8 +559,9 @@ var AppGenerator = generators.Base.extend(
+ '- does a testing, debugging, all-parts except documentation, as-is build;\n'

+ chalk.bold( ' * ' + chalk.yellow( 'grunt dev ' ))
+ '- does a local, debugging, all-parts except documentation, as-is build; and keeps a close\n'
+ ' watch on filesystem changes, selectively re-triggering part builds as needed;\n'
+ '- does a local, debugging, all-parts except documentation, as-is build;\n'
+ ' (' + chalk.bold( 'Note that this variant doesn\'t exit.' ) + ' Instead, it\'ll keep a close watch on\n'
+ ' filesystem changes, selectively re-triggering part builds as needed)\n'

+ '\n'
+ chalk.bold( ' * ' + chalk.yellow( 'grunt doc ' ))
Expand Down
9 changes: 5 additions & 4 deletions generators/app/templates/@Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,11 @@
##
## Finally, this is how the main grunt commandline tasks are mapped to all of the above:
##
## * grunt [default] - does a production, non-debugging, all-parts, minified build plus artifacts
## * grunt debug - does a testing, debugging, all-parts except documentation, as-is build
## * grunt dev - does a local, debugging, all-parts except documentation, as-is build and keeps a close
## watch on filesystem changes, selectively re-triggering part builds as needed
## * grunt [default] - does a production, non-debugging, all-parts, minified build plus artifacts;
## * grunt debug - does a testing, debugging, all-parts except documentation, as-is build;
## * grunt dev - does a local, debugging, all-parts except documentation, as-is build;
## (Note that this variant doesn't exit. Instead, it'll keep a close watch on
## filesystem changes, selectively re-triggering part builds as needed)
##
## ====
##
Expand Down

0 comments on commit b9ad708

Please sign in to comment.