I've installed another additional module for my app with bower
. As project dependencies in bower.json
were not very strict, and a lot of time passed since last update, bower updated a lot of packages to newer ones. There were a lot of changes, and incompatibility between packages was the reason for major app crash.
I never asked for this, not a good moment for total upgrade&debug. How can I just roll back to previous packages?
- Original package sources are in
.gitignore
and built withgrunt
into one file (so I can't just revert the commit - as packages renewed by bower will be the same in the next build) - I couldn't find out the old package set which was OK for my app (as package sources with specific version numbers are in
.gitignore
) UPD: found versions in built file, see my answer - I couldn't find any information about sort of "bower package history" or "bower undo".
UPD: I solved the issue for myself and described the solution in the answer. But I'm really not sure it's a good way, and would be grateful for any kind of mentorship about the subject.