Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"scripts": {
"test": "vitest run",
"build": "tsup",
"prepack": "npm run build",
"coverage": "vitest run --coverage",
"docs": "typedoc --entryPointStrategy expand src/commands src/lib"
},
Expand Down
4 changes: 3 additions & 1 deletion project/info.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ Note: there is currently no `lint` npm script. User-facing docs also live in
pushes to `main`. A `verify` job runs type-check, tests, and build (plus
dependency signature audit); a `release` job builds again and runs
`npx semantic-release` when verify succeeds (GitHub release + npm publish via
OIDC trusted publishing / provenance).
OIDC trusted publishing / provenance). `package.json` also defines
`"prepack": "npm run build"` so `dist/` is always produced before
`npm pack` / publish, even if a CI build step is skipped.
- **`.github/workflows/docs.yml` (Deploy static content to Pages):** runs on
pushes to `main` (and `workflow_dispatch`). Runs `npm run docs` and deploys
the generated `docs/` folder to GitHub Pages.
Loading