We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7bb7b9b + 27ea826 commit a78dfc9Copy full SHA for a78dfc9
src/cli.ts
@@ -7,6 +7,7 @@ import packageJson from "../package.json";
7
8
const conf = yargs(process.argv.slice(2))
9
.version(packageJson.version)
10
+ .alias("version", "v")
11
.usage("wsdl-tsclient [options] [path]")
12
.example("", "wsdl-tsclient file.wsdl -o ./generated/")
13
.example("", "wsdl-tsclient ./res/**/*.wsdl -o ./generated/")
@@ -15,10 +16,6 @@ const conf = yargs(process.argv.slice(2))
15
16
type: "string",
17
description: "Output directory for generated TypeScript client",
18
})
- .option("version", {
19
- alias: "v",
20
- type: "boolean",
21
- })
22
.option("emitDefinitionsOnly", {
23
type: "boolean",
24
description: "Generate definitions only (interfaces and types)",
0 commit comments