You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 2, 2026. It is now read-only.
bower_components/angular-ui-bootstrap/dist/ui-bootstrap-0.11.0.js was not found
bower_components/angular-ui-bootstrap/dist/ui-bootstrap-tpls-0.11.0.js was not found
The problem was that angular-ui-bootstrap did not have the dist/ folder.
I managed to solve this by running the following commands:
cd bower_components/angular-ui-bootstrap
npm install
grunt --force
cd ../../
Is there a better way of solving this problem?
Why did this not happen before? We are using the same versions of the library!
Once
bower install && npm installwas ran, now inbower_components/all of the needed components where installed, ready to be used.There was a small problem, though:
When running grunt dev, this was in the output:
The problem was that angular-ui-bootstrap did not have the
dist/folder.I managed to solve this by running the following commands:
Is there a better way of solving this problem?
Why did this not happen before? We are using the same versions of the library!