Add process for beta release

This commit is contained in:
Louis Lam
2022-03-20 11:08:33 +08:00
parent fb9a206542
commit 4e95e9ea51
5 changed files with 94 additions and 4 deletions

6
extra/press-any-key.js Normal file
View File

@@ -0,0 +1,6 @@
console.log("Publish the release note on github, then press any key to continue");
process.stdin.setRawMode(true);
process.stdin.resume();
process.stdin.on("data", process.exit.bind(process, 0));