Skip to content

Commit 42f6058

Browse files
committed
Bypass packages that are already published when confirmed by users
1 parent 6ddcbd4 commit 42f6058

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/devtools/publish-release.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ async function publishToNPM() {
9191
)} has already been published.`
9292
);
9393

94-
await confirm('Is this expected?');
94+
await confirm(`Is this expected (will skip ${npmPackage}@${version})?`);
95+
continue;
9596
}
9697

9798
if (DRY_RUN) {

0 commit comments

Comments
 (0)