Description
In an effort to make things simpler to release and maintain, I'm considering dropping bower support.
If you have any tooling whatsoever (grunt
, gulp
, jshint
, eslint
, etc), you're probably already using npm
to get your dependencies to build your project. If you're not doing this, install node and npm and run npm init
in your project.
If you are currently using bower, you would simply need to install angular-bootstrap-datetimepicker
via npm
. All you would have to do is:
- Remove
angular-bootstrap-datetimepicker
from bower.json - run
npm install --save angular-bootstrap-datetimepicker
- Change where you're referencing
angular-bootstrap-datetimepicker
:bower_components/angular-bootstrap-datetimepicker/...
now becomesnode_modules/aangular-bootstrap-datetimepicker/...
.
And that's it. Obviously, if you're doing anything creative you may have a few different or other steps. But you should probably just switch to npm entirely anyway (Why We should Stop Using Bower--And How to Do It).
Please comment on this issue if there are any reasons why this won't work for you.