(fileName: string, content: string)
| 9 | const DOCS_DIR = path.join(__dirname, `../reference/insomnia-inso/${majorMinor}`); |
| 10 | |
| 11 | function writeMarkdownFile(fileName: string, content: string): void { |
| 12 | const outputPath = path.join(DOCS_DIR, fileName); |
| 13 | fs.writeFileSync(outputPath, content); |
| 14 | } |
| 15 | |
| 16 | function generateOptionsMarkdown(options: readonly commander.Option[], title: string): string { |
| 17 | return options.length |
no outgoing calls
no test coverage detected