fix: works now pls?

This commit is contained in:
2025-03-10 22:04:45 +01:00
parent 782ac97028
commit c55da7b33a
2 changed files with 8 additions and 10 deletions

View File

@@ -38,16 +38,14 @@ jobs:
name: documentation name: documentation
- run: tar -xf documentation.tar ./docs -C ./docs - run: tar -xf documentation.tar ./docs -C ./docs
- run: npm install -g pnpm && pnpm install - name: Install Deps
- name: Build run: npm install -g pnpm && pnpm
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm run build # set up 'build' script in your package.json
- name: Build documents - name: Build lib
run: pnpm run docs #set up 'docs' build script in your package.json run: pnpm run build
- name: Build docs
run: pnpm run docs:generate
- name: tar the new docs - name: tar the new docs
run: tar -cvf newdocumentation.tar ./docs run: tar -cvf newdocumentation.tar ./docs

View File

@@ -30,7 +30,7 @@
"format:check": "prettier --check .", "format:check": "prettier --check .",
"check": "pnpm lint && pnpm typecheck && pnpm format:check", "check": "pnpm lint && pnpm typecheck && pnpm format:check",
"prepare": "husky", "prepare": "husky",
"docs:create": "typedoc" "docs:generate": "typedoc"
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.22.0", "@eslint/js": "^9.22.0",