|
9 | 9 | // - https://github.com/yargs/yargs
|
10 | 10 | // - Sucks in TypeScript.
|
11 | 11 | // - "commander" allows for more module command building.
|
12 |
| -// - clack (4.3K stars) |
13 |
| -// - https://github.com/natemoo-re/clack |
14 |
| -// - ? |
15 |
| -// - arg [X} (1.2K stars) |
| 12 | +// - cac (2.7K stars) |
| 13 | +// - https://github.com/cacjs/cac |
| 14 | +// - Last release in 2022. |
| 15 | +// - arg [X] (1.2K stars) |
16 | 16 | // - https://github.com/vercel/arg
|
17 | 17 | // - Does not support commands (i.e. positional arguments).
|
| 18 | +// - clipanion (1.1K stars) |
| 19 | +// - https://github.com/arcanis/clipanion |
| 20 | +// - Written in TypeScript. |
| 21 | +// - Used by Yarn. |
| 22 | +// - Class-based. |
| 23 | +// - mri [X] (638 stars) |
| 24 | +// - https://github.com/lukeed/mri |
| 25 | +// - Written in JavaScript, no types. |
18 | 26 | // - cmd-ts (193 stars)
|
19 | 27 | // - https://github.com/Schniz/cmd-ts
|
20 |
| -// - ? |
| 28 | +// - Written in TypeScript. |
| 29 | +// - Last release in 2023. |
21 | 30 |
|
22 | 31 | import { Command } from "@commander-js/extra-typings";
|
23 |
| -import { |
24 |
| - findPackageRoot, |
25 |
| - getPackageJSONFieldsMandatory, |
26 |
| - nukeDependencies, |
27 |
| - updatePackageJSONDependencies, |
28 |
| -} from "complete-node"; |
| 32 | +import { nukeDependencies, updatePackageJSONDependencies } from "complete-node"; |
29 | 33 | import { checkCommand, checkTSCommand } from "./commands/check/check.js";
|
30 | 34 | import { copyCommand } from "./commands/copy/copy.js";
|
31 | 35 | import { initCommand, initTSCommand } from "./commands/init/init.js";
|
32 | 36 | import { monitorCommand } from "./commands/monitor/monitor.js";
|
33 | 37 | import { publishCommand } from "./commands/publish/publish.js";
|
34 |
| -import { CWD } from "./constants.js"; |
35 |
| - |
36 |
| -const packageRoot = findPackageRoot(); |
37 |
| -const { name, version, description } = getPackageJSONFieldsMandatory( |
38 |
| - packageRoot, |
39 |
| - "name", |
40 |
| - "version", |
41 |
| - "description", |
42 |
| -); |
| 38 | +import { CWD, PROJECT_DESCRIPTION, PROJECT_VERSION } from "./constants.js"; |
43 | 39 |
|
44 | 40 | export async function parseArgs(): Promise<void> {
|
45 | 41 | const program = new Command()
|
46 |
| - .name(name) |
47 |
| - .description(`${description}.`) |
48 |
| - .version(version, "-V, --version", "Output the version number.") |
| 42 | + .name("isaacscript") |
| 43 | + .description(`${PROJECT_DESCRIPTION}.`) |
| 44 | + .version(PROJECT_VERSION, "-V, --version", "Output the version number.") |
49 | 45 | .helpOption("-h, --help", "Display the list of commands and options.")
|
50 | 46 | .helpCommand(false)
|
51 | 47 | .allowExcessArguments(false) // By default, Commander.js will allow extra positional arguments.
|
|
0 commit comments