We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b896e0a commit c5abf59Copy full SHA for c5abf59
1 file changed
src/scripts/release.ts
@@ -163,6 +163,16 @@ program
163
process.exit(1);
164
}
165
166
+ process.on("SIGINT", () => {
167
+ console.log(
168
+ "\nRelease process interrupted. Please confirm to exit (ctrl-c again to confirm).",
169
+ );
170
+ process.once("SIGINT", () => {
171
+ console.log("Exiting...");
172
+ process.exit(1);
173
+ });
174
175
+
176
await cleanDist();
177
const version = await getLocalVersion();
178
const bumpedVersion = bumpVersion(version, type);
0 commit comments