UNPKG

@eve-tools/cli

Version:

Everest cli to speed up project start-up and standardized frontend , backend architecture

12 lines (11 loc) 331 B
import inquirer from "inquirer"; export const wantToRunProjectPrompt = async () => { const { wantToRunProject } = await inquirer.prompt([ { type: "confirm", name: "wantToRunProject", message: "Do you want to run the project ?", }, ]); return { wantToRunProject }; };