-
Notifications
You must be signed in to change notification settings - Fork 603
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default application.js route breaks build, when ember-cli-coffeescript used #659
Comments
Please add info on the exact error you're seeing, ideally a demo project that shows the error. |
Please refer here: kimroen/ember-cli-coffeescript#92 Demo project would be exactly like your dummy app but with Coffescript (at least application route should be written in coffee). So I found workaround to code that particular route in JS, but may be there are better options. |
Seems like kimroen/ember-cli-coffeescript doesn't really work with Ember CLI's way of having addons merge stuff into the application. |
For those who can't convert their entire ember app from coffeescript to ES2015 right away, I found that if merely my application route is javascript instead of coffeescript (/routes/application.js instead of /routes/application.coffee), it works for the time being. Of course, this is a transitional step and not a long-term suggestion. |
Or for those who don't want to convert their app to es2015 at all! |
So application doesn't build when
application
route written in coffee. I know I can just use JS for that particular file, but is there a prettier solution?The text was updated successfully, but these errors were encountered: