Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1023 Bytes

File metadata and controls

51 lines (36 loc) · 1023 Bytes

Contributing to registrie

Thanks for your interest in contributing.

Reporting bugs

Open an issue at github.com/HigumaSoft/registrie/issues.

Include:

  • Package version
  • TypeScript/Node version
  • Minimal reproduction case
  • Expected vs actual behavior

Suggesting changes

Open an issue before opening a PR for anything beyond small bug fixes. This avoids wasted effort if the change doesn't fit the project direction.

Development setup

git clone https://github.com/HigumaSoft/registrie.git
cd registrie
npm install

Run tests:

npm test

Run lint:

npm run lint

Build:

npm run build

Making changes

  • All changes must have tests
  • All tests must pass: npm test
  • Lint must be clean: npm run lint
  • Keep PRs focused — one fix or feature per PR

Releasing

Releases are handled by the maintainer using changesets. You do not need to bump versions in PRs.