Getting started with contributing
This guide helps you set up your development environment and understand the contribution workflow.
Prerequisites
- Node.js 22+
- pnpm 8+
- Git
Setup
Clone the repository:
git clone https://github.com/AlignTrue/aligntrue.git
cd aligntrueInstall dependencies:
pnpm installBuild all packages:
pnpm buildDevelopment workflow
Run tests:
pnpm testRun CLI locally:
cd packages/cli
pnpm devContribution guidelines
- Fork the repository
- Create a feature branch
- Make your changes with tests
- Run
pnpm lintandpnpm test - Submit a pull request
See CONTRIBUTING.md for detailed guidelines.
Last updated on