Skip to content

Commit

Permalink
fix: update simple releaser for monorepo pkg path (#917)
Browse files Browse the repository at this point in the history
  • Loading branch information
bharathkkb committed May 26, 2021
1 parent ac38407 commit 9170e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/releasers/simple.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class Simple extends ReleasePR {

updates.push(
new Changelog({
path: this.changelogPath,
path: this.addPath(this.changelogPath),
changelogEntry,
version: candidate.version,
packageName: packageName.name,
Expand All @@ -39,7 +39,7 @@ export class Simple extends ReleasePR {

updates.push(
new VersionTxt({
path: 'version.txt',
path: this.addPath('version.txt'),
changelogEntry,
version: candidate.version,
packageName: packageName.name,
Expand Down

0 comments on commit 9170e53

Please sign in to comment.