Closed mikeumus closed 9 years ago
Maybe I'm just missing a step. :confused: I did the following:
ember new selfie
npm install --save-dev ember-cli-bootstrap
npm install
bower install
ember g ember-cli-bootstrap
'importBootstrapJS': true
to Brocfileember s --live-reload=false
Not precisely in that order but those are all the things I've done in this new ember-cli app so far. I've got it working locally with #36 but deploying to Heroku I get the above error again of course (as Heroku pull from NPM and bower). I can load my customized version of ember-cli-bootstrap as my own node_module, that should work with Heroku. Pardon the stream of consciousness here, it helped. :blush:
I'm experiencing the same issue on a fresh project using ember-cli 0.1.4.
I'm also experiencing the same issue on a fresh ember-cli 0.1.4 project.
This is happening because this commit added an import to a shims file and that file was never included in this repo. Probably because vendor
is gitignored o.O
ping @linstula can you correct that?
vendor
is no longer ignored. Version 0.0.14 has been published with the fix. Sorry for the confusion!
On a fresh ember-cli app, installing ember-cli-bootstrap via
npm install --save-dev ember-cli-bootstrap
and setting'importBootstrapJS': true
in the Brocfile,ember s --live-reloard=false
outputs the following:This time the code is open. You may view it here: https://github.com/mikeumus/selfie
:smiley: