@contractspec/tool.docs-generator
v3.7.15
Published
CLI tool for generating docs artifacts from ContractSpec specs and DocBlocks
Maintainers
Readme
@contractspec/tool.docs-generator
Website: https://contractspec.io
CLI tool for generating docs artifacts from ContractSpec specs and DocBlocks.
What It Provides
- Layer: tool.
- Consumers: docs pipeline (
bun run docs:generate), CI. - Related ContractSpec packages include
@contractspec/lib.contracts-spec,@contractspec/tool.bun,@contractspec/tool.typescript. - Related ContractSpec packages include
@contractspec/lib.contracts-spec,@contractspec/tool.bun,@contractspec/tool.typescript.
Installation
npm install @contractspec/tool.docs-generator
or
bun add @contractspec/tool.docs-generator
Usage
npx contractspec-docs --help
# or
bunx contractspec-docs --helpArchitecture
src/fs.tsis part of the package's public or composition surface.src/generate.tsis part of the package's public or composition surface.src/index.tsis the root public barrel and package entrypoint.src/markdown.test.tsis part of the package's public or composition surface.src/markdown.tsis part of the package's public or composition surface.src/types.tsis shared public type definitions.
Public Entry Points
- Binary
contractspec-docspoints to./dist/index.js. - Export
.resolves through./src/index.ts.
Local Commands
bun run dev— contractspec-bun-build devbun run build— bun run prebuild && bun run build:bundle && bun run build:typesbun run test— bun testbun run lint— bun lint:fixbun run lint:check— biome check .bun run lint:fix— biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .bun run typecheck— tsc --noEmitbun run publish:pkg— bun publish --tolerate-republish --ignore-scripts --verbosebun run publish:pkg:canary— bun publish:pkg --tag canarybun run clean— rimraf dist .turbobun run build:bundle— contractspec-bun-build transpilebun run build:types— contractspec-bun-build typesbun run docs:generate— bun src/index.ts generate --source "../../../generated/docs" --out "../../../packages/bundles/library/src/components/docs/generated" --content-root "../../../generated/docs"bun run prebuild— contractspec-bun-build prebuild
Recent Updates
- Replace eslint+prettier by biomejs to optimize speed.
Notes
- Output paths are configured via CLI flags -- do not hard-code destination directories.
- Depends on
@contractspec/lib.contracts-specfor spec parsing -- changes there may require updates here. - The
docs:generatescript references relative paths togenerated/docsand the library bundle; verify paths if the monorepo structure changes.
