-
-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: publish nightlies as pre-releases #145
Conversation
Is there any ETA on the pre-release release? |
By the way, it's possible to ask the VS code team to deprecate |
Already published |
Yep. Already asked them. |
Summary
This PR changes the way we publish nightly (pre-release) versions.
Description
Up until now, we published two distinct extension (
biomejs.biome
&biomejs.biome-nightly
). This PR leverages VS Code's pre-release system to ship both stable and pre-releases under the same name, using a pre-release flag where appropriate.Versions
The nightly versions are released with a version number based on the date and time.
{year}.{month}.{day}{hour}
, e.g.2024.2.1719
This way, they don't clash with the semver-like version used for the stable releases.
Todo
biomejs.biome-nightly
Related Issue
This PR closes #137