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
A missing feature form npm is the possibility to update a npm modules submodules even if the npm module it self have not got a new version.
Consider the following scenario:
Project depends on a: ~1.0.0 that depends on b: ~1.0.0.
Thenb releases version 1.0.1 that contains a bugfix. To get it before a updates with npm, you can use npm install a --force.
This will refetch all the latest submodules that a uses. We need a similar command in yarn that would update all submodules and update the yarn.lock as well, even if the module it self has not changed.
(Please note that it is different from npm install --force, because it only acts on one module, instead of all modules.)
Using:
Yarn 0.19.1
Node 6.9.1
Osx sierra 10.12.2
The text was updated successfully, but these errors were encountered:
presidenten
changed the title
Add possibility to update npm modules submodules
Add possibility to upgrade submodules
May 31, 2017
A missing feature form npm is the possibility to update a npm modules submodules even if the npm module it self have not got a new version.
Consider the following scenario:
Project depends on
a: ~1.0.0
that depends onb: ~1.0.0
.Then
b
releases version1.0.1
that contains a bugfix. To get it beforea
updates with npm, you can usenpm install a --force
.This will refetch all the latest submodules that
a
uses. We need a similar command in yarn that would update all submodules and update the yarn.lock as well, even if the module it self has not changed.(Please note that it is different from
npm install --force
, because it only acts on one module, instead of all modules.)Using:
Yarn 0.19.1
Node 6.9.1
Osx sierra 10.12.2
The text was updated successfully, but these errors were encountered: