We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have a mixed monorepo. There're some webapps served individually and some libs published to be reused.
I'm using a non-commit style to create tags with release note for each commit on master branch.
{ "name": "workspace", "$schema": "node_modules/nx/schemas/project-schema.json", "targets": { "version": { "executor": "@jscutlery/semver:version", "options": { "preset": "conventional", "tagPrefix": "v", "syncVersions": true, "skipCommit": true, "skipProjectChangelog": true, "postTargets": ["workspace:github"] } }, "github": { "executor": "@jscutlery/semver:github", "options": { "target": "master", "tag": "${tag}", "notes": "${notes}" } },
When commits for the webapps comes to master branch, we don't actually want to log the change log in the tag.
Could I exclude some apps/libs when doing the version command?
The text was updated successfully, but these errors were encountered:
Hi @SunStupic, no it's not possible in the actual state. It would be possible with the grouping support but we don't have it.
Sorry, something went wrong.
No branches or pull requests
We have a mixed monorepo. There're some webapps served individually and some libs published to be reused.
I'm using a non-commit style to create tags with release note for each commit on master branch.
When commits for the webapps comes to master branch, we don't actually want to log the change log in the tag.
Could I exclude some apps/libs when doing the version command?
The text was updated successfully, but these errors were encountered: