From 922494c8cf41277a28d7496ce0deed42600a45d9 Mon Sep 17 00:00:00 2001 From: Mark Faga Date: Mon, 24 Nov 2025 15:37:24 -0800 Subject: [PATCH] docs: clarify config file name in example --- README.md | 4 ++-- src/commands/generate.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3116c2b..6adfd3a 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ GLOBAL FLAGS DESCRIPTION Generate type definitions for your Reforge configuration - You can use the default type-generation configuration, or by provide your own: + You can use the default type-generation configuration, or by provide your own via a reforge.config.json file: Format: { @@ -163,7 +163,7 @@ DESCRIPTION ​ } }; - Example: + Example reforge.config.json: ```json { ​ "outputDirectory": "path/to/your/directory", diff --git a/src/commands/generate.ts b/src/commands/generate.ts index 3fb9012..771136e 100644 --- a/src/commands/generate.ts +++ b/src/commands/generate.ts @@ -82,7 +82,7 @@ const DEFAULT_CONFIG: { export default class Generate extends APICommand { /* eslint-disable no-irregular-whitespace */ - static description = `You can use the default type-generation configuration, or by provide your own: + static description = `You can use the default type-generation configuration, or by provide your own via a reforge.config.json file: Format: { @@ -95,7 +95,7 @@ Format: ​ } }; -Example: +Example reforge.config.json: \`\`\`json { ​ "outputDirectory": "path/to/your/directory",