Skip to content

Commit

Permalink
fix(app): allow normal javascript to be created
Browse files Browse the repository at this point in the history
Allow --coffee=false to generate JavaScript files

Fixes #329
Fixes #316
  • Loading branch information
eddiemonge committed Sep 16, 2013
1 parent c30464c commit c8190b5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions script-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ function Generator() {
this.env.options.testPath = this.env.options.testPath || 'test/spec';
}

this.env.options.coffee = this.options.coffee;
if (typeof this.env.options.coffee === 'undefined') {
this.option('coffee');

Expand Down

0 comments on commit c8190b5

Please sign in to comment.