Skip to content

Commit

Permalink
fix(core): add description to dry-run parameter (#2919)
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Apr 27, 2020
1 parent 09baaaa commit 5994a9d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/tao/src/commands/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,11 @@ function printGenHelp(
...schema,
properties: {
...schema.properties,
dryRun: `Runs through and reports activity without writing to disk.`
dryRun: {
type: 'boolean',
default: false,
description: `Runs through and reports activity without writing to disk.`
}
}
},
logger
Expand Down

0 comments on commit 5994a9d

Please sign in to comment.