An HTML-only Bluesky frontend

add manual checkout for now

+13 -1
+5 -1
.build.yml
··· 2 packages: 3 - unzip 4 sources: 5 - - https://git.sr.ht/~jordanreger/htmlsky#ts 6 environment: 7 DENO_INSTALL: /home/build/.deno 8 PATH: $DENO_INSTALL/bin:$PATH 9 tasks: 10 - install-deno: | 11 curl -fsSL https://deno.land/x/install/install.sh | sh 12 - install-deployctl: |
··· 2 packages: 3 - unzip 4 sources: 5 + - https://git.sr.ht/~jordanreger/htmlsky 6 environment: 7 DENO_INSTALL: /home/build/.deno 8 PATH: $DENO_INSTALL/bin:$PATH 9 tasks: 10 + - checkout-ts: | 11 + cd htmlsky 12 + git checkout -q ts 13 + git submodule update --init --recursive 14 - install-deno: | 15 curl -fsSL https://deno.land/x/install/install.sh | sh 16 - install-deployctl: |
+8
deno.json
··· 5 "compilerOptions": { 6 "jsx": "react-jsx", 7 "jsxImportSource": "https://esm.sh/preact@10.22.0" 8 } 9 }
··· 5 "compilerOptions": { 6 "jsx": "react-jsx", 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" 16 } 17 }