diff options
Diffstat (limited to 'packages/abi-gen/src/index.ts')
-rw-r--r-- | packages/abi-gen/src/index.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/abi-gen/src/index.ts b/packages/abi-gen/src/index.ts index 19d289e49..12b78f96f 100644 --- a/packages/abi-gen/src/index.ts +++ b/packages/abi-gen/src/index.ts @@ -33,11 +33,16 @@ const args = yargs type: 'string', demand: true, }) + .option('fileExtension', { + describe: 'The extension of the output file', + type: 'string', + demand: true, + }) .argv; function writeOutputFile(name: string, renderedTsCode: string): void { const fileName = toSnakeCase(name); - const filePath = `${args.output}/${fileName}.ts`; + const filePath = `${args.output}/${fileName}.${args.fileExtension}`; fs.writeFileSync(filePath, renderedTsCode); utils.log(`Created: ${chalk.bold(filePath)}`); } |