Skip to content

Commit

Permalink
chore(pie-monorepo-utils): DSW-2496 added back comma
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaNg2332 committed Nov 20, 2024
1 parent be95f3f commit b7d6076
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = async ({ github, context }, execa) => {

const newTags = Array
.from(stdout.matchAll(/New tag:\s+([^\s\n]+)/g))
.map(([tag]) => tag)
.map(([, tag]) => tag)
.filter((tag) => !/^wc-.+$|pie-(monorepo|docs|storybook)/.test(tag));

let body;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = async ({ github, context }, execa) => {

const newTags = Array
.from(stdout.matchAll(/New tag:\s+([^\s\n]+)/g))
.map(([tag]) => tag)
.map(([, tag]) => tag)
.filter((tag) => !/^wc-.+$|pie-(monorepo|docs|storybook)/.test(tag));

// Extract the snapshot version from one of the tags
Expand Down

0 comments on commit b7d6076

Please sign in to comment.