Skip to content

Commit

Permalink
Change dependent change default to none (#7052)
Browse files Browse the repository at this point in the history
# Pull Request

## 📖 Description

It seems beachball has an issue with dependent change types being patch bumped and attempting to release with the bumpDeps configuration option being set. This changes the current changes in the change folder to bump dependentChangeType to none and to default to dependentChangeType none for future changes.

## ✅ Checklist

### General

<!--- Review the list and put an x in the boxes that apply. -->

- [ ] I have included a change request file using `$ npm run change`
- [ ] I have added tests for my changes.
- [x] I have tested my changes.
- [ ] I have updated the project documentation to reflect my changes.
- [x] I have read the [CONTRIBUTING](https://github.com/microsoft/fast/blob/master/CONTRIBUTING.md) documentation and followed the [standards](https://github.com/microsoft/fast/blob/master/CODE_OF_CONDUCT.md#our-standards) for this project.
  • Loading branch information
janechu authored Dec 11, 2024
1 parent baa307b commit 7967174
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"comment": "Patch bumping to apply latest tag to the package",
"packageName": "@microsoft/fast-element",
"email": "[email protected]",
"dependentChangeType": "patch"
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"comment": "fast-element: Simplify conditional checks in element-controller",
"packageName": "@microsoft/fast-element",
"email": "[email protected]",
"dependentChangeType": "patch"
"dependentChangeType": "none"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"scripts": {
"bump": "beachball bump",
"build": "npm run build --workspaces --if-present",
"change": "beachball change",
"change": "beachball change --dependent-change-type none",
"checkchange": "beachball check --scope \"!sites/*\" --changehint \"Run 'npm run change' to generate a change file\"",
"check": "beachball check ",
"build:gh-pages": "npm run build -w fast-site",
Expand Down

0 comments on commit 7967174

Please sign in to comment.