We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07d22ed commit 9354926Copy full SHA for 9354926
scripts/version.ts
@@ -1,4 +1,5 @@
1
export const version = await Bun
2
.file("VERSION")
3
.text()
4
- .then((v) => v.trim());
+ .then((v) => v.trim())
5
+ .then((v) => v.replace(/^v/iu, ""));
0 commit comments