Guillaume Vincent
Guillaume Vincent

Reputation: 14791

Bower list matching my dependencies versions

Is there a way for bower list command to show updates available while respecting my dependencies versions

example bower.json :

{
    "dependencies": {
        "jquery": "<2"
    }
}

bower install :

bower installing jquery#1.10.0

jquery update to 1.10.1 (bower info jquery):

jquery

  Versions:
    - 2.0.2
    - 2.0.1
    - 2.0.0
    - 1.10.1
    - 1.10.0

bower list:

bower discover Please wait while newer package versions are being discovered
...
└── jquery#1.10.0 (2.0.2 now available)

Edit:

a correction has been made in master branch. The bug doesn't exists anymore https://github.com/bower/bower/issues/562

Upvotes: 1

Views: 1358

Answers (1)

Sindre Sorhus
Sindre Sorhus

Reputation: 63487

You should open a ticket about it.

Upvotes: 2

Related Questions