@hey-api/openapi-ts 0.84.4 → 0.85.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/index.cjs CHANGED
@@ -36,7 +36,7 @@ const params = program
36
36
  .option('-s, --silent', 'Set log level to silent')
37
37
  .option(
38
38
  '--no-log-file',
39
- 'Disable writing a log file. Works like --silent but without supressing console output',
39
+ 'Disable writing a log file. Works like --silent but without suppressing console output',
40
40
  )
41
41
  .option(
42
42
  '-w, --watch [value]',
@@ -119,6 +119,7 @@ async function start() {
119
119
  }
120
120
 
121
121
  userConfig.logs.file = userConfig.logFile;
122
+ delete userConfig.logFile;
122
123
 
123
124
  if (typeof params.watch === 'string') {
124
125
  userConfig.watch = Number.parseInt(params.watch, 10);