Detect and warn about app.js
and router.js
if you also have coffee-equivalents
#78
Labels
app.js
and router.js
if you also have coffee-equivalents
#78
This is a common thing to run in to after updating ember-cli.
What happens is this:
You have an
app.coffee
file, and you also have anapp.js
file. This can happen when you update ember-cli, for example.broccoli-coffee tries to generate an
app.js
file from theapp.coffee
file, but that file is already present, so you get an error.What this issue is about is detecting these files (
app.js
androuter.js
) specificically and giving the user a warning, because they probably didn't mean to have both a js and cs version of them, it just happened accidentally. A specific error is better than the one you get now, which is kind of cryptic.The text was updated successfully, but these errors were encountered: