- Use
npmoryarnfor interacting with the project's building and package management - Use
npm run lintornpm run lint:fixto check and auto-fix lint issues - Use
npm run formatornpm run format:checkfor code formatting with Prettier - Automatically work to resolve failures in the lint and format output
- Do not include excessive emoji in readme, contributing, and other documentation files
- run
nvm useto ensure the correct node version is available when running commands
- From the package root you can run
npm testornpm run test:coverage - The commit should pass all tests before proceeding
- Add or update tests for the code you change, even if nobody asked
- Build the project with
npm run build - The TypeScript compiler will output to the
dist/directory
- Run
npm run precommitto execute linting and formatting - Pre-commit hooks will automatically run on commit if configured