We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1437e6 commit 6abf67fCopy full SHA for 6abf67f
.github/workflows/deploy.yml
@@ -33,7 +33,13 @@ jobs:
33
bun-version: "1.3.5"
34
35
- name: Install dependencies
36
- run: bun install --frozen-lockfile --backend=copyfile
+ run: bun install --frozen-lockfile
37
+
38
+ - name: Fix libsodium ESM resolution
39
+ run: |
40
+ # Bun's symlink structure breaks libsodium ESM imports - patch to use CJS
41
+ find node_modules -path "*/libsodium-wrappers/dist/modules-esm/libsodium-wrappers.mjs" -exec \
42
+ sed -i 's|from "./libsodium.mjs"|from "../modules/libsodium-wrappers.js"|g' {} \;
43
44
- name: Deploy with Alchemy
45
working-directory: packages/infra
0 commit comments