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
Having to specify the PATCH part of the version shouldn't be necessary, Both yarn set version and npm install -g yarn@1 properly resolve to the newest version based on the part user specified (1.22 -> 1.22.17 etc.) and having the same feature in the install script would be really nice.
If we don't want to use npm, we could follow yarn set version that is using GitHub API[0], this would require parsing the JSON output as well as finding the correct tag to generate the URL.
Having to specify the
PATCH
part of the version shouldn't be necessary, Bothyarn set version
andnpm install -g yarn@1
properly resolve to the newest version based on the part user specified (1.22 -> 1.22.17 etc.) and having the same feature in the install script would be really nice.curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.22
Should install
1.22.$latest
The text was updated successfully, but these errors were encountered: