this is the first time i am working with lerna and i am having some trouble with the independent versioning, just to start off i ran lerna init without --independent and i added that in the lerna.json later on after i published the initial version.
i am using Github Actions for CI and everything is working ok but lerna keeps on publishing new versions of the package i have even though i don't make changes to it, for example if i add somethings to the README file it will still update the version of the package i have and publish a new version, i am using conventional commits with it as well.
here is my lerna.json
{
"packages": [
"packages/*"
],
"version": "independent",
"npmClient": "npm",
"workspaces": true,
"command": {
"publish": {
"conventionalCommits": true,
"message": "chore: new release"
}
}
}
i tried deleting all tags and running a build with a change to the package to deploy another version but still every other change that happens outside the package triggers a new release for the package..