Skip to content

Commit

Permalink
chore: convert unused string interpolation quotes (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 committed Apr 1, 2020
1 parent 7e75f7f commit e28eb59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/releasers/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class Node extends ReleasePR {
// Make an effort to populate packageName from the contents of
// the package.json, rather than forcing this to be set:
const contents: GitHubFileContents = await this.gh.getFileContents(
`package.json`
'package.json'
);
const pkg = JSON.parse(contents.parsedContent);
if (pkg.name) this.packageName = pkg.name;
Expand Down
2 changes: 1 addition & 1 deletion src/releasers/ruby-yoshi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export class RubyYoshi extends ReleasePR {
commits: Commit[]
): string {
// summarize the commits that landed:
let summary = `### Commits since last release:\n\n`;
let summary = '### Commits since last release:\n\n';
const updatedFiles: {[key: string]: boolean} = {};
commits.forEach(commit => {
if (commit.sha === null) return;
Expand Down

0 comments on commit e28eb59

Please sign in to comment.