From 4a728795c8494de9eede44b331a160cb69cb043e Mon Sep 17 00:00:00 2001 From: Yamiteru Date: Mon, 22 Apr 2024 00:41:15 +0200 Subject: [PATCH] feat: update website build --- .github/workflows/website.yml | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index d427ff9..aecf4f9 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -39,7 +39,8 @@ jobs: uses: erikyo/tsdoc-action@v1 with: basePath: ./ - options: typedoc.json + entrypoint: src/index.ts + out_dir: website - name: Setup Pages uses: actions/configure-pages@v3 diff --git a/package.json b/package.json index 02ae69a..c993fa1 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "build:tsup": "tsup", "build:stats": "bun run scripts/stats.ts", "build:imports": "bun run scripts/imports.ts", - "build:website": "typedoc --basePath ./ --options typedoc.json", + "build:website": "typedoc --basePath ./ --entryPoints src/index.ts --out website", "test": "vitest run --typecheck", "test:coverage": "vitest run --coverage", "check": "bunx @biomejs/biome check --apply ./"