blob: 0f81fdb324c84548b98660c377f69627c77adfb4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env node
import { Command } from "commander";
import { check } from "./commands/check.js";
import { config } from "./commands/config.js";
import { fix } from "./commands/fix.js";
const program = new Command();
check(program);
fix(program);
config(program);
program.parse(process.argv);
|