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 [args]") .command(cssCmd) .demand(2) .help() .parse();