#!/usr/bin/env node import "dotenv/config"; import yargs from "yargs"; import { hideBin } from "yargs/helpers"; yargs(hideBin(process.argv)) .commandDir("commands", { extensions: ["js", "ts"], exclude: /.d.ts$/, }) .demandCommand() .strict() .alias({ h: "help" }).argv;