UNPKG

create-cen-app

Version:
9 lines (7 loc) 215 B
import { execa } from "execa"; export const checkForPoetry = async () => { const poetryInstalled = await execa("poetry", ["--version"]) .then(() => true) .catch(() => false); return poetryInstalled; };