An HTML-only Bluesky frontend

add manual checkout for now

+13 -1
+5 -1
.build.yml
··· 2 2 packages: 3 3 - unzip 4 4 sources: 5 - - https://git.sr.ht/~jordanreger/htmlsky#ts 5 + - https://git.sr.ht/~jordanreger/htmlsky 6 6 environment: 7 7 DENO_INSTALL: /home/build/.deno 8 8 PATH: $DENO_INSTALL/bin:$PATH 9 9 tasks: 10 + - checkout-ts: | 11 + cd htmlsky 12 + git checkout -q ts 13 + git submodule update --init --recursive 10 14 - install-deno: | 11 15 curl -fsSL https://deno.land/x/install/install.sh | sh 12 16 - install-deployctl: |
+8
deno.json
··· 5 5 "compilerOptions": { 6 6 "jsx": "react-jsx", 7 7 "jsxImportSource": "https://esm.sh/preact@10.22.0" 8 + }, 9 + "deploy": { 10 + "project": "de31f9a6-b61d-4c66-b006-a781955361ed", 11 + "exclude": [ 12 + "**/node_modules" 13 + ], 14 + "include": [], 15 + "entrypoint": "main.ts" 8 16 } 9 17 }