tangled
alpha
login
or
join now
jordanreger.com
/
htmlsky
0
fork
atom
An HTML-only Bluesky frontend
0
fork
atom
overview
issues
pulls
pipelines
add manual checkout for now
jordanreger.com
2 years ago
0a72be52
e0f9f5ac
+13
-1
2 changed files
expand all
collapse all
unified
split
.build.yml
deno.json
+5
-1
.build.yml
···
2
2
packages:
3
3
- unzip
4
4
sources:
5
5
-
- https://git.sr.ht/~jordanreger/htmlsky#ts
5
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
10
+
- checkout-ts: |
11
11
+
cd htmlsky
12
12
+
git checkout -q ts
13
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
8
+
},
9
9
+
"deploy": {
10
10
+
"project": "de31f9a6-b61d-4c66-b006-a781955361ed",
11
11
+
"exclude": [
12
12
+
"**/node_modules"
13
13
+
],
14
14
+
"include": [],
15
15
+
"entrypoint": "main.ts"
8
16
}
9
17
}