To get the repository up and running, install the dependencies from the root directory:
npm iThen build all the packages:
npm run buildYou can start the examples by running:
npm run dev
# or
npm run dev-vueIf you want to work on a specific package, open a new terminal, go to the package directory and run this command to watch for file changes:
npm run devUse Conventional Commits to format your commit messages. The available scopes are listed in commitlint.config.js.
This project uses Prettier to format the code. It is recommended to install the Prettier extension in your code editor. You can also run the formatter manually with:
npm run formatAnd check for formatting issues with:
npm run format:check