From c8190b55284e8c1570cc8fafdc8723250f43829b Mon Sep 17 00:00:00 2001 From: Eddie Monge Date: Mon, 16 Sep 2013 14:05:54 -0700 Subject: [PATCH] fix(app): allow normal javascript to be created Allow --coffee=false to generate JavaScript files Fixes #329 Fixes #316 --- script-base.js | 1 + 1 file changed, 1 insertion(+) diff --git a/script-base.js b/script-base.js index cd090c9..f6f67eb 100644 --- a/script-base.js +++ b/script-base.js @@ -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');