Skip to content

Commit 1b8c20d

Browse files
committed
Add typedoc
1 parent 88b2223 commit 1b8c20d

File tree

4 files changed

+37
-0
lines changed

4 files changed

+37
-0
lines changed

.github/workflows/docs.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Deploy Documentation
2+
3+
on:
4+
release:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: lts/*
15+
- run: npm install
16+
- run: npm run docs
17+
- uses: actions/configure-pages@v5
18+
- uses: actions/upload-pages-artifact@v3
19+
with:
20+
path: './docs'
21+
deploy:
22+
needs: build
23+
permissions:
24+
pages: write
25+
id-token: write
26+
environment:
27+
name: github-pages
28+
url: ${{ steps.deployment.outputs.page_url }}
29+
runs-on: ubuntu-latest
30+
steps:
31+
- uses: actions/deploy-pages@v4
32+
id: deployment

.github/workflows/nodejs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ jobs:
1616
- run: npm test
1717
- run: npm run lint
1818
- run: npm run type-check
19+
- run: npm run docs

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
node_modules/
22
package-lock.json
33

4+
docs/
5+
46
scratch/
57
TODO*

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"test": "vitest --watch=false",
3232
"coverage": "vitest run --coverage",
3333
"type-check": "tsc --noEmit",
34+
"docs": "typedoc",
3435
"prepack": "tsc --project tsconfig.build.json",
3536
"postpack": "node ./bin/postpack.js"
3637
},
@@ -44,6 +45,7 @@
4445
"@typescript-eslint/parser": "*",
4546
"eslint-import-resolver-typescript": "*",
4647
"eslint-plugin-import": "*",
48+
"typedoc": "^0.27.6",
4749
"typescript-eslint": "*",
4850
"undici": "^7.3.0",
4951
"vitest": "*"

0 commit comments

Comments
 (0)