From 0ebd9aa0987c4078247b3ea06d90bfcf172429f9 Mon Sep 17 00:00:00 2001 From: Mark IJbema Date: Mon, 23 Mar 2026 12:08:32 +0100 Subject: [PATCH] chore(vscode): use --frozen-lockfile for install task Prevents bun install from modifying the lockfile during F5 launch. --- .vscode/tasks.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 64a3ed53c5..4aabf87953 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -69,7 +69,7 @@ "label": "VSCode - Install", "type": "shell", "command": "bun", - "args": ["install"], + "args": ["install", "--frozen-lockfile"], "group": "build", "presentation": { "reveal": "silent"