A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.

paw paw

+6 -3
+6 -3
.tangled/workflows/upload-demo-to-wisp.yml
··· 10 10 dependencies: 11 11 nixpkgs: 12 12 - nodejs 13 - - coreutils 14 13 github:NixOS/nixpkgs/nixpkgs-unstable: 15 14 - bun 16 15 ··· 23 22 - name: build demo 24 23 command: | 25 24 export PATH="$HOME/.nix-profile/bin:$PATH" 25 + 26 + ENV_PATH=$(find /nix/store -name "env" -path "*/coreutils*/bin/env" | head -1) 27 + mkdir -p /usr/bin 2>/dev/null || true 28 + ln -sf "$ENV_PATH" /usr/bin/env 2>/dev/null || true 26 29 ls -la /usr/bin 27 - which node 30 + 28 31 /usr/bin/env node --version 29 - 32 + 30 33 bun install 31 34 bun run build:demo 32 35