From 4cf98517476f2f138eaebe9a7dbce17469d62c88 Mon Sep 17 00:00:00 2001 From: pfg Date: Mon, 11 Nov 2024 14:38:17 -0800 Subject: [PATCH] Bump runtime transpiler cache version for #15009 (#15094) --- src/bun.js/RuntimeTranspilerCache.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bun.js/RuntimeTranspilerCache.zig b/src/bun.js/RuntimeTranspilerCache.zig index adcf0542bd..177f470a99 100644 --- a/src/bun.js/RuntimeTranspilerCache.zig +++ b/src/bun.js/RuntimeTranspilerCache.zig @@ -5,7 +5,8 @@ /// Version 6: `use strict` is preserved in CommonJS modules when at the top of the file /// Version 7: Several bundler changes that are likely to impact the runtime as well. /// Version 8: Fix for generated symbols -const expected_version = 8; +/// Version 9: String printing changes +const expected_version = 9; const bun = @import("root").bun; const std = @import("std");