Skip to content

Commit

Permalink
chore: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
bubkoo committed Nov 25, 2022
1 parent aef5176 commit 845f3c3
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
10 changes: 10 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @semantic-release-monorepo/cli [2.0.22](https://github.com/bubkoo/semantic-release-monorepo/compare/@semantic-release-monorepo/[email protected]...@semantic-release-monorepo/[email protected]) (2022-11-25)





### Dependencies

* **@semantic-release-monorepo/core:** upgraded to 2.1.18

## @semantic-release-monorepo/cli [2.0.21](https://github.com/bubkoo/semantic-release-monorepo/compare/@semantic-release-monorepo/[email protected]...@semantic-release-monorepo/[email protected]) (2022-11-25)


Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@semantic-release-monorepo/cli",
"version": "2.0.21",
"version": "2.0.22",
"type": "module",
"exports": "./index.js",
"files": [
Expand All @@ -25,7 +25,7 @@
"semantic-release": "^19.x"
},
"dependencies": {
"@semantic-release-monorepo/core": "2.1.17",
"@semantic-release-monorepo/core": "2.1.18",
"lodash": "^4.17.21",
"meow": "^11.0.0"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## @semantic-release-monorepo/core [2.1.18](https://github.com/bubkoo/semantic-release-monorepo/compare/@semantic-release-monorepo/[email protected]...@semantic-release-monorepo/[email protected]) (2022-11-25)

## @semantic-release-monorepo/core [2.1.17](https://github.com/bubkoo/semantic-release-monorepo/compare/@semantic-release-monorepo/[email protected]...@semantic-release-monorepo/[email protected]) (2022-11-25)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@semantic-release-monorepo/core",
"version": "2.1.17",
"version": "2.1.18",
"description": "Apply semantic-release's automatic publishing to a monorepo",
"type": "module",
"exports": "./esm/index.js",
Expand Down
10 changes: 9 additions & 1 deletion packages/core/src/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,15 @@ function makePrepareGit(

const options = _.cloneDeep({
...parsedOptions,
plugins: [[pluginName, { assets, message: `${header}\n\n${body}` }]],
plugins: [
[
pluginName,
{
assets: allAssets,
message: `${header}\n\n${body}`,
},
],
],
})

const ret = await semanticGetConfig(context, options)
Expand Down

0 comments on commit 845f3c3

Please sign in to comment.