Open totallymike opened 9 years ago
I had to add ".js" to the compiler-filename otherwise app.import would've thrown an error that I didn't pass a file.
So instead of:
app.import(path.join(app.bowerDirectory, 'ember', 'ember-template-compiler'));
use
app.import(path.join(app.bowerDirectory, 'ember', 'ember-template-compiler.js'));
Can confirm @DavidPhilip's comment. You do need the '.js' added to it. Should work fine then
This resolves #39