Skip to content

Commit a965093

Browse files
authored
Merge pull request #81 from ReforgeHQ/mfaga-doc-improvements
docs: clarify config file name in example
2 parents 7e22b50 + 922494c commit a965093

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ GLOBAL FLAGS
150150
DESCRIPTION
151151
Generate type definitions for your Reforge configuration
152152
153-
You can use the default type-generation configuration, or by provide your own:
153+
You can use the default type-generation configuration, or by provide your own via a reforge.config.json file:
154154
155155
Format:
156156
{
@@ -163,7 +163,7 @@ DESCRIPTION
163163
​ }
164164
};
165165
166-
Example:
166+
Example reforge.config.json:
167167
```json
168168
{
169169
​ "outputDirectory": "path/to/your/directory",

src/commands/generate.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const DEFAULT_CONFIG: {
8282

8383
export default class Generate extends APICommand {
8484
/* eslint-disable no-irregular-whitespace */
85-
static description = `You can use the default type-generation configuration, or by provide your own:
85+
static description = `You can use the default type-generation configuration, or by provide your own via a reforge.config.json file:
8686
8787
Format:
8888
{
@@ -95,7 +95,7 @@ Format:
9595
​ }
9696
};
9797
98-
Example:
98+
Example reforge.config.json:
9999
\`\`\`json
100100
{
101101
​ "outputDirectory": "path/to/your/directory",

0 commit comments

Comments
 (0)