Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 978 Bytes

File metadata and controls

19 lines (16 loc) · 978 Bytes
  • Use npm or yarn for interacting with the project's building and package management
  • Use npm run lint or npm run lint:fix to check and auto-fix lint issues
  • Use npm run format or npm run format:check for 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 use to ensure the correct node version is available when running commands

Testing instructions

  • From the package root you can run npm test or npm run test:coverage
  • The commit should pass all tests before proceeding
  • Add or update tests for the code you change, even if nobody asked

Building

  • Build the project with npm run build
  • The TypeScript compiler will output to the dist/ directory

Pre-commit hooks

  • Run npm run precommit to execute linting and formatting
  • Pre-commit hooks will automatically run on commit if configured