Would you like to work on a fix?
Current and expected behavior
I have an npm workspace with multiple packages stored under packages directory. Let's say there is a foo package there with version 1.0.0.
Here is my .simple-release.json config:
{
"project": [
"@simple-release/npm#NpmWorkspacesProject",
{
"mode": "independent"
}
],
"publish": {
"skip": true
},
"bump": {
"extraScopes": ["deps", "dev-deps"]
}
}
When I push the following commit to the master fix(foo) blah blah simple-release-action creates a release PR with a proper changelog item, but doesn't bump foo's version to 1.0.1 neither in the changelog nor in the foo's package.json.
Reproduction
package version
Latest v1
Possible solution
No response
Would you like to work on a fix?
Current and expected behavior
I have an npm workspace with multiple packages stored under
packagesdirectory. Let's say there is afoopackage there with version1.0.0.Here is my
.simple-release.jsonconfig:{ "project": [ "@simple-release/npm#NpmWorkspacesProject", { "mode": "independent" } ], "publish": { "skip": true }, "bump": { "extraScopes": ["deps", "dev-deps"] } }When I push the following commit to the master
fix(foo) blah blahsimple-release-actioncreates a release PR with a proper changelog item, but doesn't bump foo's version to 1.0.1 neither in the changelog nor in the foo'spackage.json.Reproduction
package version
Latest v1
Possible solution
No response