When I updated ember-cli
to 2.11.0
and I found EMBER NO LONGER SUPPLIED VIA bower
. So I check npm instead of bower, but I don't know what to do.
Such as moment.js
use bower look like:
bower.json
"dependencies": {
...
"moment": "2.14.1"
}
ember-cli-build.js
...
app.import('bower_components/moment/moment.js');
...
.jshintrc
...
"moment": true,
...
This way can run in help
and controller
.
But I use npm
and set ember-cli-build.js
code app.import('node_modules/moment/moment.js');
had errors.
And css
aslo have this problem.
What is best way to npm instead of bower in ember-cli? Thanks.
Through ember-browserify
npm install ember-browserify --save-dev
npm install moment --save-dev
you can import it by import moment from 'npm:moment'
bower
. It does not mean you can't use bower at all. You can still use bower.json
and include it like you did.vendor
folder and include it ember-cli-build.js
file . but for moment.js inclusion. this is not the right way.I prefer 1 or 2 options. and 3 and 4 is not applicable in this case.