Skip to content

Commit

Permalink
Bypass packages that are already published when confirmed by users
Browse files Browse the repository at this point in the history
  • Loading branch information
ryancat committed Feb 9, 2023
1 parent 6ddcbd4 commit 42f6058
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/devtools/publish-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ async function publishToNPM() {
)} has already been published.`
);

await confirm('Is this expected?');
await confirm(`Is this expected (will skip ${npmPackage}@${version})?`);
continue;
}

if (DRY_RUN) {
Expand Down

0 comments on commit 42f6058

Please sign in to comment.