Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 906 Bytes

File metadata and controls

50 lines (41 loc) · 906 Bytes

Contributing

Thanks for contributing to docs-driven-api-updater.

Development Setup

  1. Install dependencies:
    npm install
  2. Build:
    npm run build
  3. Typecheck:
    npm run typecheck
  4. Test:
    npm run test

Coding Guidelines

  • TypeScript-first, ESM-only.
  • Keep changes minimal and focused.
  • Add JSDoc for exported functions.
  • Avoid introducing heavy dependencies.
  • Preserve safety constraints in update flow.

Pull Requests

  • Use descriptive PR titles.
  • Explain why the change is needed.
  • Include manual verification steps.
  • Keep generated artifacts out of commits when possible.

Release Process

  1. Update version in package.json.
  2. Update CHANGELOG.md.
  3. Run:
    npm run build && npm run typecheck && npm run test
  4. Publish:
    npm publish --access public