Skip to content

Commit

Permalink
ci: add release rules for breaking "feat!" and "fix!" prefixes (#2273)
Browse files Browse the repository at this point in the history
Should trigger major version bump.
  • Loading branch information
hkfb authored Sep 26, 2024
1 parent bf368ef commit 1f5337e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion typescript/.nxreleaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,9 @@
],
"buildTarget": "${PROJECT_NAME}:build",
"outputPath": "${PROJECT_DIR}/dist",
"tagFormat": "${PROJECT_NAME}@${version}"
"tagFormat": "${PROJECT_NAME}@${version}",
"releaseRules": [
{ "type": "feat!", "release": "major" },
{ "type": "fix!", "release": "major" }
]
}

0 comments on commit 1f5337e

Please sign in to comment.