UNPKG

@gld5000-cli/script-selector

Version:

Builds a CLI menu to select and run your NPM package.json scripts

8 lines (6 loc) 256 B
import { runSelectedScript } from "./util/selectPackageScripts.mjs"; import { logTimestampArrow } from "@gld5000k/timestamp"; export async function runSelector(packageFilePath) { logTimestampArrow(); await runSelectedScript(packageFilePath); }