There was an error while loading. Please reload this page.
1 parent ce4be7d commit da7b653Copy full SHA for da7b653
1 file changed
scripts/build.ts
@@ -1,6 +1,7 @@
1
// build.ts - Handles building the application with version information
2
3
import * as path from "@std/path";
4
+import { VERSION } from "../version.ts";
5
6
// Get the version from environment or use date-based versioning
7
const getVersion = () => {
@@ -10,7 +11,7 @@ const getVersion = () => {
10
11
return envVersion;
12
}
13
- return "DEV";
14
+ return VERSION;
15
};
16
17
// Build the application with the version baked in
0 commit comments