diff options
| author | 2021-09-15 23:34:17 -0700 | |
|---|---|---|
| committer | 2021-09-15 23:34:17 -0700 | |
| commit | 5a89f30841bb3d4390f14b3175d6429bb25ae327 (patch) | |
| tree | 67c106bfba3e24d5d901e05316398b951986fc19 /src | |
| parent | 244585b82ab28f61179451cbb43c2798937a4080 (diff) | |
| download | bun-5a89f30841bb3d4390f14b3175d6429bb25ae327.tar.gz bun-5a89f30841bb3d4390f14b3175d6429bb25ae327.tar.zst bun-5a89f30841bb3d4390f14b3175d6429bb25ae327.zip | |
Switch to 0.0.x instead of 0.0.0-x to fix the npm install issue
Diffstat (limited to 'src')
| -rw-r--r-- | src/global.zig | 4 | ||||
| m--------- | src/javascript/jsc/WebKit | 0 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/global.zig b/src/global.zig index f82f8bc1d..1d696cc65 100644 --- a/src/global.zig +++ b/src/global.zig @@ -386,9 +386,9 @@ pub const Output = struct { pub const Global = struct { pub const build_id = std.fmt.parseInt(u64, std.mem.trim(u8, @embedFile("../build-id"), "\n \r\t"), 10) catch unreachable; pub const package_json_version = if (isDebug) - std.fmt.comptimePrint("0.0.0-{d}_debug", .{build_id}) + std.fmt.comptimePrint("0.0.{d}_debug", .{build_id}) else - std.fmt.comptimePrint("0.0.0-{d}", .{build_id}); + std.fmt.comptimePrint("0.0.{d}", .{build_id}); pub fn panic(comptime fmt: string, args: anytype) noreturn { @setCold(true); diff --git a/src/javascript/jsc/WebKit b/src/javascript/jsc/WebKit -Subproject e7d31961d4bf98b3e8b1df3ea0398ea1517a61d +Subproject 47a606f4a5f7b72335d2d1af2af1cc434d825b6 |
