UNPKG

aoc-automation

Version:

Advent of Code tool to automate the repetitive parts of AoC.

22 lines (18 loc) 282 B
import prompts from "prompts"; import kleur from "kleur"; const onCancel = () => { process.exit(); }; const commandPrompt = () => { return prompts( [ { type: "text", name: "command", message: ``, }, ], { onCancel }, ); }; export default commandPrompt;