How to safely upgrade a Bower package and roll back to a previous version?
Check the currently installed version by running bower list or inspecting bower.json . Install the new version and save it: bower install # --save . Verify that your application works as expected (run tests, start dev server, etc.). If the update causes issues, roll back by installing the previous version: bower install # --save . Optionally, remove the prob