priduck-color-theme-cli-js/src/cli.mjs

13 lines
280 B
JavaScript
Raw Normal View History

2024-05-07 02:56:35 +00:00
import yargs from "yargs";
import { hideBin } from "yargs/helpers";
import * as cssCmd from "./cmds/css.mjs";
// Set up the top-level command.
yargs(hideBin(process.argv))
.scriptName("priduck")
.usage("$0 <cmd> [args]")
.command(cssCmd)
.demand(2)
.help()
.parse();