Skip to content

Commit

Permalink
Merge pull request #87 from pmowrer/misc-fixes
Browse files Browse the repository at this point in the history
Misc fixes
  • Loading branch information
pmowrer authored Apr 5, 2020
2 parents 0f4166b + 77c25d2 commit 69a5fc8
Show file tree
Hide file tree
Showing 3 changed files with 976 additions and 1,023 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"pkg-up": "^2.0.0",
"ramda": "^0.25.0",
"read-pkg": "^3.0.0",
"semantic-release-plugin-decorators": "^2.1.0"
"semantic-release-plugin-decorators": "^3.0.0"
},
"devDependencies": {
"husky": "^4.2.1",
Expand Down
10 changes: 8 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ const {

const analyzeCommits = wrapStep(
'analyzeCommits',
compose(logPluginVersion('analyzeCommits'), withOnlyPackageCommits)
compose(logPluginVersion('analyzeCommits'), withOnlyPackageCommits),
{
wrapperName: 'semantic-release-monorepo',
}
);

const generateNotes = wrapStep(
Expand All @@ -21,7 +24,10 @@ const generateNotes = wrapStep(
logPluginVersion('generateNotes'),
withOnlyPackageCommits,
withOptionsTransforms([mapNextReleaseVersion(versionToGitTag)])
)
),
{
wrapperName: 'semantic-release-monorepo',
}
);

module.exports = {
Expand Down
Loading

0 comments on commit 69a5fc8

Please sign in to comment.