UNPKG

@eve-tools/cli

Version:

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

12 lines (11 loc) 328 B
import inquirer from "inquirer"; export const wantToInstallDepsPrompt = async () => { const { wantToInstall } = await inquirer.prompt([ { type: "confirm", name: "wantToInstall", message: "Do you want to install dependencies ?", }, ]); return { wantToInstall }; };