Closed joshuaconner closed 10 years ago
coffeescript and validate-imports don't work together nicely. see https://github.com/stefanpenner/ember-app-kit/issues/546
you should remove "grunt-es6-import-validate": "0.0.6"
from your package.json
to disable validate-imports
when using coffeescript.
npm install
npm install --save-dev grunt-contrib-coffee
app/app.js
with anapp/app.coffee
file that contains https://gist.github.com/anonymous/08d2936d576769ed71b5grunt server
fails with the following outputAny ideas? I tried moving the
coffee
task up above thevalidate-imports:tests
tasks in thebuildScripts
task but it didn't fix it. Removing thevalidate-imports:tests
line allowsgrunt server
to run fine.Any ideas what I'm doing wrong here? Thanks!