-
|
Judging from the project's GitHub release page, the latest stable version seems to be 0.7.3, with no beta or insiders version visible there. However, on npmjs the latest version is 0.0.0-insiders.f7d2598, which is also the version installed when one runs |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
It seems like the releases tagged Not sure why you get |
Beta Was this translation helpful? Give feedback.
It seems like the releases tagged
0.0.0-insiders.*are incorrectly assigned thelatestchannel when published to NPM. I believe this is because the regex to determine the channel does not resolve to beinsiders. I.e. for0.0.0-insiders.f7d2598, we can see in the GitHub workflow run it is published to thelatestchannel. Compare this to0.0.0-insiders.3b0ed57which publishes correctly toinsiders. This is because0.0.0-insiders.3b0ed57does match the regex.Not sure why you get
0.2.0-beta.3with pnpm though!