Skip to content

Commit

Permalink
fix(docs): Add coffeescript=false to readme
Browse files Browse the repository at this point in the history
The README now shows the --coffee=false option
  • Loading branch information
eddiemonge committed Oct 20, 2013
1 parent b9eb501 commit abd7dc3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ angular.module('myMod')

A project can mix CoffeScript and JavaScript files.

To output JavaScript files, even if CoffeeScript files exist (the default is to output CoffeeScript files if
the generator finds any in the project), use `--coffee=false`.

### Minification Safe
By default, generators produce unannotated code. Without annotations, AngularJS's DI system will break when minified. Typically, these annotations that make minification safe are added automatically at build-time, after application files are concatenated, but before they are minified. By providing the `--minsafe` option, the code generated will out-of-the-box be ready for minification. The trade-off is between amount of boilerplate, and build process complexity.

Expand Down

0 comments on commit abd7dc3

Please sign in to comment.