Skip to content

Commit c509e24

Browse files
committed
Fix changeset checker regex
1 parent 1508a0e commit c509e24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/check_changeset.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async function parseChangesetFile(changesetFile: string) {
7272
.filter(line => line)
7373
.map(line => {
7474
const [packageName] = line.split(':');
75-
return packageName.replace(/'/g, '');
75+
return packageName.replace(/['"]/g, '');
7676
});
7777
return changesetPackages;
7878
}

0 commit comments

Comments
 (0)