Skip to content

Commit 3e18ca0

Browse files
fix: suppress unparsed command warnings in config:versions and convert
1 parent 16c5d9c commit 3e18ca0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/apps/cli/commands/config/versions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export default class Versions extends Command {
88
static flags = helpFlag();
99

1010
async run() {
11+
await this.parse(Versions);
1112
const dependencies: string[] = [];
1213
let dependency = '';
1314

src/apps/cli/commands/convert.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export default class Convert extends Command {
3131
};
3232

3333
async run() {
34+
await this.parse(Convert);
3435
const { args, flags } = await this.parse(Convert);
3536
const filePath = applyProxyToPath(
3637
args['spec-file'],

0 commit comments

Comments
 (0)