Skip to content

Commit 6abf67f

Browse files
committed
feat: claude?
1 parent a1437e6 commit 6abf67f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@ jobs:
3333
bun-version: "1.3.5"
3434

3535
- name: Install dependencies
36-
run: bun install --frozen-lockfile --backend=copyfile
36+
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' {} \;
3743
3844
- name: Deploy with Alchemy
3945
working-directory: packages/infra

0 commit comments

Comments
 (0)