Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
{
Expand All @@ -163,7 +163,7 @@ DESCRIPTION
​ }
};

Example:
Example reforge.config.json:
```json
{
​ "outputDirectory": "path/to/your/directory",
Expand Down
4 changes: 2 additions & 2 deletions src/commands/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:
{
Expand All @@ -95,7 +95,7 @@ Format:
​ }
};

Example:
Example reforge.config.json:
\`\`\`json
{
​ "outputDirectory": "path/to/your/directory",
Expand Down