From dc44f25857a8fb06926d12b8d92a418cce337ad1 Mon Sep 17 00:00:00 2001 From: 844196 <844196@users.noreply.github.com> Date: Sun, 20 Jul 2025 23:51:25 +0900 Subject: [PATCH] :zap: Disable V8 code cache --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 0da803b..4d556f9 100644 --- a/mise.toml +++ b/mise.toml @@ -27,7 +27,7 @@ depends = [ [tasks.'build:internal'] depends = 'bundle' -run = 'deno compile --allow-all --target {{arg(name="target")}} --output dist/wk-{{arg(name="target")}} dist/wk.js' +run = 'deno compile --no-code-cache --allow-all --target {{arg(name="target")}} --output dist/wk-{{arg(name="target")}} dist/wk.js' hide = true [tasks.bundle]