Skip to content

Commit

Permalink
chore: preMajor: false for stable packages (#1491)
Browse files Browse the repository at this point in the history
Enables proper semver version bumps for packages that are stable.
  • Loading branch information
oliverlaz authored Sep 20, 2024
1 parent 6393cff commit 6ed27b9
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
18 changes: 9 additions & 9 deletions packages/react-bindings/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"baseBranch": "main",
"preset": {
"name": "conventionalcommits",
"preMajor": true,
"preMajor": false,
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "hidden": false},
{"type": "docs", "hidden": true},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "section": "Features"},
{"type": "test", "hidden": true}
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "chore", "hidden": false },
{ "type": "docs", "hidden": true },
{ "type": "style", "hidden": true },
{ "type": "refactor", "hidden": true },
{ "type": "perf", "section": "Features" },
{ "type": "test", "hidden": true }
]
},
"trackDeps": true,
Expand Down
18 changes: 9 additions & 9 deletions packages/react-native-sdk/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"baseBranch": "main",
"preset": {
"name": "conventionalcommits",
"preMajor": true,
"preMajor": false,
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "hidden": false},
{"type": "docs", "hidden": true},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "section": "Features"},
{"type": "test", "hidden": true}
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "chore", "hidden": false },
{ "type": "docs", "hidden": true },
{ "type": "style", "hidden": true },
{ "type": "refactor", "hidden": true },
{ "type": "perf", "section": "Features" },
{ "type": "test", "hidden": true }
]
},
"trackDeps": true,
Expand Down
18 changes: 9 additions & 9 deletions packages/styling/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
"dryRun": false,
"preset": {
"name": "conventionalcommits",
"preMajor": true,
"preMajor": false,
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "hidden": true},
{"type": "docs", "section": "Documentation"},
{"type": "style", "hidden": true},
{"type": "refactor", "hidden": true},
{"type": "perf", "section": "Features"},
{"type": "test", "hidden": true}
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "chore", "hidden": true },
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "hidden": true },
{ "type": "refactor", "hidden": true },
{ "type": "perf", "section": "Features" },
{ "type": "test", "hidden": true }
]
},
"trackDeps": true,
Expand Down

0 comments on commit 6ed27b9

Please sign in to comment.