Please add the following git hook that reinforces the use of conventional commit messages.
brew install pre-commit
git config --local init.templateDir $(pwd)/.github
pre-commit install --hook-type commit-msg
yarn install
Test your changes with the command:
yarn start:app:ts
Or test how it works with JavaScript:
yarn start:app:js
Before running the JavaScript app, create a new version locally with:
yarn build && yarn pack
We use vitest and jsdom for testing.
yarn test:unit