Monorepo for Wisp.place. A static site hosting service built on top of the AT Protocol.

update editor.tsx

Changed files
+3 -5
public
editor
+3 -5
public/editor/editor.tsx
···
steps:
- name: build site
command: |
export PATH="$HOME/.nix-profile/bin:$PATH"
-
# regenerate lockfile
-
rm package-lock.json bun.lock
-
bun install @rolldown/binding-linux-arm64-gnu --save-optional
-
bun install
-
# build with vite
bun node_modules/.bin/vite build
- name: deploy to wisp
···
steps:
- name: build site
command: |
+
# necessary to ensure bun is in PATH
export PATH="$HOME/.nix-profile/bin:$PATH"
+
bun install --frozen-lockfile
+
# build with vite, run directly to get around env issues
bun node_modules/.bin/vite build
- name: deploy to wisp