Skip to content

Commit e82c1c9

Browse files
committed
refactor(cli): make more similar to complete-cli
1 parent 226dab8 commit e82c1c9

10 files changed

+54
-59
lines changed

packages/isaacscript-cli/eslint.config.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ export default tseslint.config(
3434

3535
{
3636
ignores: [
37-
// We don't want to lint template files, since they won't actually have valid code inside of
38-
// them yet.
37+
// We do not want to lint template files, since they do not have valid code inside of them
38+
// yet.
3939
"**/file-templates/**",
4040

4141
// We do not want to lint the compiled plugins. (Unlike other files, they are compiled to the

packages/isaacscript-cli/src/banner.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import chalk from "chalk";
2-
import { fatalError, getPackageJSONVersion } from "complete-node";
2+
import { fatalError } from "complete-node";
33
import figlet from "figlet"; // Cannot be "import * as figlet" or else run-time errors occur.
4-
import { PROJECT_NAME, REPO_ROOT } from "./constants.js";
4+
import { PROJECT_NAME, PROJECT_VERSION } from "./constants.js";
55

66
export function printBanner(): void {
77
const banner = figlet.textSync(PROJECT_NAME);
88
console.log(chalk.green(banner));
99

10-
const isaacScriptCLIVersion = getPackageJSONVersion(REPO_ROOT);
11-
const versionString = `v${isaacScriptCLIVersion}`;
10+
const versionString = `v${PROJECT_VERSION}`;
1211
const bannerLines = banner.split("\n");
1312
const firstBannerLine = bannerLines[0];
1413
if (firstBannerLine === undefined) {

packages/isaacscript-cli/src/checkForWindowsTerminalBugs.ts

+3-8
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,12 @@ const BASH_PROFILE_PATH = path.join(HOME_DIR, ".bash_profile");
1111
* library. Try to detect this and warn the end-user.
1212
*/
1313
export async function checkForWindowsTerminalBugs(): Promise<void> {
14-
if (process.platform !== "win32") {
15-
return;
16-
}
17-
1814
if (
19-
process.env["SHELL"] !== String.raw`C:\Program Files\Git\usr\bin\bash.exe`
15+
process.platform === "win32" &&
16+
process.env["SHELL"] === String.raw`C:\Program Files\Git\usr\bin\bash.exe`
2017
) {
21-
return;
18+
await checkForWindowsBugColor();
2219
}
23-
24-
await checkForWindowsBugColor();
2520
}
2621

2722
async function checkForWindowsBugColor() {

packages/isaacscript-cli/src/commands/init/getProjectPath.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export async function getProjectPath(
2424
customDirectory: string | undefined,
2525
yes: boolean,
2626
forceName: boolean,
27-
): Promise<[string, boolean]> {
27+
): Promise<{ projectPath: string; createNewDir: boolean }> {
2828
let projectName = name;
2929
let projectPath: string;
3030
let createNewDir: boolean;
@@ -54,7 +54,7 @@ export async function getProjectPath(
5454
validateProjectName(projectName, forceName);
5555

5656
console.log(`Using a project name of: ${chalk.green(projectName)}`);
57-
return [projectPath, createNewDir];
57+
return { projectPath, createNewDir };
5858
}
5959

6060
async function getNewProjectName(): Promise<[string, string, boolean]> {

packages/isaacscript-cli/src/commands/init/init.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ async function init(
158158
const packageManager = getPackageManagerUsedForNewProject(options);
159159

160160
// Prompt the end-user for some information (and validate it as we go).
161-
const [projectPath, createNewDir] = await getProjectPath(
161+
const { projectPath, createNewDir } = await getProjectPath(
162162
name,
163163
useCurrentDirectory,
164164
customDirectory,

packages/isaacscript-cli/src/constants.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { findPackageRoot, getPackageJSONFieldsMandatory } from "complete-node";
12
import os from "node:os";
23
import path from "node:path";
34

@@ -8,7 +9,18 @@ export const HOME_DIR = os.homedir();
89
export const FILE_SYNCED_MESSAGE = "File synced:";
910
export const COMPILATION_SUCCESSFUL_MESSAGE = "Compilation successful.";
1011
export const MOD_UPLOADER_PATH = String.raw`C:\Program Files (x86)\Steam\steamapps\common\The Binding of Isaac Rebirth\tools\ModUploader\ModUploader.exe`;
11-
export const PROJECT_NAME = "IsaacScript";
12+
13+
const packageRoot = findPackageRoot();
14+
const { version, description } = getPackageJSONFieldsMandatory(
15+
packageRoot,
16+
"name",
17+
"version",
18+
"description",
19+
);
20+
21+
export const PROJECT_NAME = "IsaacScript"; // We want to capitalize the name.
22+
export const PROJECT_VERSION = version;
23+
export const PROJECT_DESCRIPTION = description;
1224

1325
// `isaacscript`
1426
export const REPO_ROOT = path.join(import.meta.dirname, "..");

packages/isaacscript-cli/src/git.ts

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
import chalk from "chalk";
2-
import {
3-
commandExists,
4-
getPackageJSONVersion,
5-
isFile,
6-
readFile,
7-
} from "complete-node";
2+
import { commandExists, isFile, readFile } from "complete-node";
83
import path from "node:path";
94
import yaml from "yaml";
10-
import { HOME_DIR, PROJECT_NAME, REPO_ROOT } from "./constants.js";
5+
import { HOME_DIR, PROJECT_NAME, PROJECT_VERSION } from "./constants.js";
116
import { execShell, execShellString } from "./exec.js";
127
import type { GitHubCLIHostsYAML } from "./interfaces/GitHubCLIHostsYAML.js";
138
import { getInputString, getInputYesNo } from "./prompt.js";
@@ -190,8 +185,7 @@ export function initGitRepository(
190185

191186
if (isGitNameAndEmailConfigured(verbose)) {
192187
execShellString("git add --all", verbose, false, projectPath);
193-
const isaacScriptCLIVersion = getPackageJSONVersion(REPO_ROOT);
194-
const commitMessage = `chore: add files from ${PROJECT_NAME} ${isaacScriptCLIVersion} template`;
188+
const commitMessage = `chore: add files from ${PROJECT_NAME} ${PROJECT_VERSION} template`;
195189
execShell(
196190
"git",
197191
["commit", "--message", commitMessage],
@@ -209,7 +203,7 @@ export function initGitRepository(
209203
}
210204
}
211205

212-
function isGitNameAndEmailConfigured(verbose: boolean) {
206+
function isGitNameAndEmailConfigured(verbose: boolean): boolean {
213207
const nameExitStatus = execShellString(
214208
"git config --global user.name",
215209
verbose,

packages/isaacscript-cli/src/packageManager.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ export function getPackageManagerUsedForNewProject(
2929
}
3030

3131
/**
32-
* Previously, this function determined the package manager based on certain commands existing, but
33-
* this is undesirable because some projects might prefer `npm`, even if they are forced to use
34-
* other package managers for other projects.
32+
* Previously, this function determined the package manager based on certain commands existing.
33+
* However, this is undesirable because some projects might prefer `npm`, even if they are forced to
34+
* use other package managers for other projects.
3535
*/
3636
function getDefaultPackageManager(): PackageManager {
3737
return PackageManager.npm;
@@ -77,7 +77,7 @@ function getPackageManagerFromOptions(options: PackageManagerOptions) {
7777
const npmExists = commandExists("npm");
7878
if (!npmExists) {
7979
fatalError(
80-
`You specified the "--npm" flag, but "${chalk.green(
80+
`You specified the "--npm" option, but "${chalk.green(
8181
"npm",
8282
)}" does not seem to be a valid command.`,
8383
);
@@ -90,7 +90,7 @@ function getPackageManagerFromOptions(options: PackageManagerOptions) {
9090
const yarnExists = commandExists("yarn");
9191
if (!yarnExists) {
9292
fatalError(
93-
`You specified the "--yarn" flag, but "${chalk.green(
93+
`You specified the "--yarn" option, but "${chalk.green(
9494
"yarn",
9595
)}" does not seem to be a valid command.`,
9696
);
@@ -103,7 +103,7 @@ function getPackageManagerFromOptions(options: PackageManagerOptions) {
103103
const pnpmExists = commandExists("pnpm");
104104
if (!pnpmExists) {
105105
fatalError(
106-
`You specified the "--pnpm" flag, but "${chalk.green(
106+
`You specified the "--pnpm" option, but "${chalk.green(
107107
"pnpm",
108108
)}" does not seem to be a valid command.`,
109109
);

packages/isaacscript-cli/src/parseArgs.ts

+19-23
Original file line numberDiff line numberDiff line change
@@ -9,43 +9,39 @@
99
// - https://github.com/yargs/yargs
1010
// - Sucks in TypeScript.
1111
// - "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)
1616
// - https://github.com/vercel/arg
1717
// - 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.
1826
// - cmd-ts (193 stars)
1927
// - https://github.com/Schniz/cmd-ts
20-
// - ?
28+
// - Written in TypeScript.
29+
// - Last release in 2023.
2130

2231
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";
2933
import { checkCommand, checkTSCommand } from "./commands/check/check.js";
3034
import { copyCommand } from "./commands/copy/copy.js";
3135
import { initCommand, initTSCommand } from "./commands/init/init.js";
3236
import { monitorCommand } from "./commands/monitor/monitor.js";
3337
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";
4339

4440
export async function parseArgs(): Promise<void> {
4541
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.")
4945
.helpOption("-h, --help", "Display the list of commands and options.")
5046
.helpCommand(false)
5147
.allowExcessArguments(false) // By default, Commander.js will allow extra positional arguments.

packages/isaacscript-cli/src/validateNodeVersion.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import chalk from "chalk";
22
import { parseSemanticVersion } from "complete-common";
3-
import { fatalError } from "complete-node";
43
import { PROJECT_NAME } from "./constants.js";
54

65
// 20.11 is the minimum version that supports `import.meta.dirname`.
@@ -12,7 +11,7 @@ export function validateNodeVersion(): void {
1211

1312
const semanticVersion = parseSemanticVersion(version);
1413
if (semanticVersion === undefined) {
15-
fatalError(`Failed to parse the Node version: ${version}`);
14+
throw new Error(`Failed to parse the Node version: ${version}`);
1615
}
1716

1817
const { majorVersion, minorVersion } = semanticVersion;

0 commit comments

Comments
 (0)