Skip to content

Commit 70661c9

Browse files
ci: isolate site and CLI releases into separate PRs (#1497)
- Enable separate-pull-requests in release-please config - Add exclude-paths for site on root package - Align site/package.json version to 1.0.0 to match manifest
1 parent 1e8d317 commit 70661c9

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.release-please-config.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,18 @@
1010
"pull-request-header": ":rotating_light: There are changes ready for release :rocket:\n\nℹ Merge this PR once the team confirms the release is ready.\n",
1111
"pull-request-title-pattern": "chore: ${version}",
1212
"include-component-in-tag": false,
13+
"separate-pull-requests": true,
1314
"extra-files": [
1415
"lib/src/version.dart"
1516
],
1617
"packages": {
1718
".": {
1819
"release-type": "dart",
1920
"changelog-path": "CHANGELOG.md",
20-
"version-file": "pubspec.yaml"
21+
"version-file": "pubspec.yaml",
22+
"exclude-paths": [
23+
"site"
24+
]
2125
},
2226
"site": {
2327
"release-type": "node",

site/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "site",
3-
"version": "0.0.0",
3+
"version": "1.0.0",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

0 commit comments

Comments
 (0)