UNPKG

@reliverse/rse-sdk

Version:

@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).

9 lines (8 loc) 284 B
import { confirmPrompt } from "@reliverse/rempts"; export async function shouldInitGit(isDev) { return await confirmPrompt({ title: "Do you want to initialize a Git repository?", content: "This will create a `.git` folder in your project.", defaultValue: !isDev }); }