First, run the development server:
npm run dev
# or
yarn devFor having semantic-release to analyze the commit, we need to be consistant with the commit messages.
First install commitizen globally.
npm run -g commitizenand then,
npm run commitReleases are based on the commit types: feat for the minor version, and fix for the patch release, and fix with BREAKING CHANGES creates a major upgrade.
Other types do not trigger version bump.