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
For example, yarn add [email protected] --tilde would accept 1.2.9 but not 1.3.0
which would lead me to believe yarn would add foo": "~1.2.3" to package.json, however it adds foo": "1.2.3" (no ~) instead. It seems that adding an @version will cause yarn to implicitly use the --exact flag ... unless I'm missing something here.
The text was updated successfully, but these errors were encountered:
The docs say:
which would lead me to believe yarn would add
foo": "~1.2.3"
topackage.json
, however it addsfoo": "1.2.3"
(no~
) instead. It seems that adding an@version
will cause yarn to implicitly use the--exact
flag ... unless I'm missing something here.The text was updated successfully, but these errors were encountered: