From 7aae5454d3efa7974d7041068f4f0ac6e168ec68 Mon Sep 17 00:00:00 2001 From: Paul Bouzian Date: Sun, 12 Apr 2026 18:03:33 +0200 Subject: [PATCH] fix: make Bun installs use the isolated linker Add a root bunfig.toml that forces Bun's isolated linker for this workspace. The repo already targets Bun 1.3.9, where this monorepo layout is the expected default, but making the linker explicit keeps installs working when contributors are on older or migrated Bun setups and avoids workspace prepare-script failures from @effect/language-service. Co-authored-by: Codex --- bunfig.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 bunfig.toml diff --git a/bunfig.toml b/bunfig.toml new file mode 100644 index 00000000..641e878f --- /dev/null +++ b/bunfig.toml @@ -0,0 +1,2 @@ +[install] +linker = "isolated"