We have a library repository that creates a new branch each time a new release is published
We have a app that refers to above mentioned library using bower.json
: "lib": "git+https://example.com/path/to/library.git#<release>"
.
Each time a new library release appears, we have to explicitly point bower.json
to the new release # as shown above.
Question:
Is there currently a mechanism (tag?) for example git+https://example.com/path/to/library.git#latest
that can convey to bower
, to automatically pick up latest release (branch) in this case, everytime an npm update
or npm install
is called ?