mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-15 22:35:20 +01:00
* Added egg move parse utility script * Update interactive.js Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Update interactive.js Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Update interactive.js Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Applied kev's reviews * Removed `basePath` from tsconfig the docs literally recommend against using it so yeah * Fixed up configs so that script folder has its own file * Reverted changes to egg move contents * renamed boilerplate so biome doesn't lint it * Fix `jsconfig.json` so that it doesn't typecheck all of `node_modules` See https://github.com/microsoft/TypeScript/issues/50862#issuecomment-1565175938 for more info * Update tsconfig.json Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * Updated workflows and fixed issues * Removed eslint from linting workflow * Fixed type error in d.ts file to shut up linters * Reverted test-filters.yml * Update biome.jsonc * Update decrypt-save.js comment * Update interactive.js * Apply Biome * Fixed type errors for scripts * Fixed biome from removing tsdoc linkcodes * Update test/@types/vitest.d.ts --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
18 lines
737 B
JavaScript
18 lines
737 B
JavaScript
import chalk from "chalk";
|
|
|
|
/** Show help/usage text for the `eggMoves:parse` CLI. */
|
|
export function showHelpText() {
|
|
console.log(`
|
|
Usage: ${chalk.cyan("pnpm eggMoves:parse [options]")}
|
|
If given no options, assumes ${chalk.blue("\`--interactive\`")}.
|
|
If given only a file path, assumes ${chalk.blue("\`--file\`")}.
|
|
|
|
${chalk.hex("#ffa500")("Options:")}
|
|
${chalk.blue("-h, --help")} Show this help message.
|
|
${chalk.blue("-f, --file[=PATH]")} Specify a path to a CSV file to read, or provide one from stdin.
|
|
${chalk.blue("-t, --text[=TEXT]")}
|
|
${chalk.blue("-c, --console[=TEXT]")} Specify CSV text to read, or provide it from stdin.
|
|
${chalk.blue("-i, --interactive")} Run in interactive mode (default)
|
|
`);
|
|
}
|