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

i hate nixery

Changed files
+2 -1
.tangled
+1
.tangled/workflows/deploy-wisp.yml
··· 49 49 - name: Build docs 50 50 command: | 51 51 cd docs 52 + export PATH="$HOME/.nix-profile/bin:$PATH" 52 53 bun run build 53 54 - name: Deploy to Wisp.place 54 55 command: |
+1 -1
.tangled/workflows/test.yml
··· 16 16 export PATH="$HOME/.nix-profile/bin:$PATH" 17 17 18 18 # have to regenerate otherwise it wont install necessary dependencies to run 19 - rm -rf bun.lock package-lock.json 19 + find . -type f \( -name "bun.lock" -o -name "package-lock.json" \) -delete 20 20 bun install 21 21 22 22 - name: run all tests