How do I know when a new version of a package uses conversation?

I use bower to view the dependencies on my bower.json below, so the question is, do I want bower to report dependencies with a newer version, but without installing it, for insatnce using npm-check-updates for npm give a good list of deprecated dependencies.

... "dependencies": { "angular": "1.3.0-beta.17", "angular-animate": "1.3.0-beta.17", "angular-mocks": "1.3.0-beta.17", "angular-resource": "1.3.0-beta.17", "angular-route": "1.3.0-beta.17", "angular-ui-select2": "~0.0.5", "underscore": "~1.x", "bootstrap": "~3.x", "components-font-awesome": "~4.x", "angular-bootstrap": "~0.11.0", "ng-grid": "~2.0.11", "AngularJS-Toaster": "~0.4.6", "intro.js": "~0.9.0", "angular-intro.js": "~1.1.1" }, ... 
+6
source share
1 answer

You can just do bower ls and it will tell you which packages are out of date. However, the discussion of adding an alias to the outdated for compatibility with other package managers included npm . You can voice your support here: https://github.com/bower/bower/issues/1138

+11
source

Source: https://habr.com/ru/post/973103/


All Articles