Switch Bun builds to copyfile backend

- Use `--backend=copyfile` during `bun install`
- Copy `node_modules` with symlink preservation via `cp -LR`
This commit is contained in:
2026-04-24 20:36:51 +03:00
parent bdc7d14c6d
commit 575ade4b81
+2 -1
View File
@@ -62,6 +62,7 @@ in {
bun install \
--frozen-lockfile \
--ignore-scripts \
--backend=copyfile \
--linker=hoisted \
--no-progress \
${renderBunFilters filters}
@@ -72,7 +73,7 @@ ${renderBunFilters filters}
installPhase = ''
runHook preInstall
cp -R ./node_modules $out
cp -LR ./node_modules $out
runHook postInstall
'';