bluecodex
Version:
Turn repetitive dev tasks into CLI commands with Typescript
15 lines (11 loc) • 343 B
text/typescript
import { command, prompt } from "../../out/main";
command("foo bar", {}, async ({ bar }) => {
let sure = false;
while (!sure) {
sure = await prompt.confirm(`Are you sure that bar is "${bar}"?`);
if (!sure) {
bar = await prompt("Okay, what is the correct bar then?");
}
}
console.log(`Alright! Foo ${bar} :)`);
});