kimroen / ember-cli-coffeescript

Adds precompilation of CoffeeScript files and all the basic generation types to the ember generate command.
MIT License
72 stars 49 forks source link

Optionally disable blueprints #84

Closed mmun closed 9 years ago

mmun commented 9 years ago

In my app I use ember-cli-coffeescript to support older code, but all new code is written in ES6. The problem is that ember g route posts users CoffeeScript blueprints. Is there a way to disable this behavior?

kimroen commented 9 years ago

Good plan, and there is; you can set blueprints to false in your config: https://github.com/kimroen/ember-cli-coffeescript#blueprints

mmun commented 9 years ago

@kimroen Thanks!