Skip to content

Commit c1883e5

Browse files
committed
chore: switch positions of oas and open
oas is inactive, so it shouldn't be first
1 parent 0e7759a commit c1883e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cmds/oas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default class OASCommand extends Command {
1010
this.usage = 'oas';
1111
this.description = 'Helpful OpenAPI generation tooling. [inactive]';
1212
this.cmdCategory = CommandCategories.UTILITIES;
13-
this.position = 1;
13+
this.position = 2;
1414

1515
this.args = [];
1616
}

src/cmds/open.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default class OpenCommand extends Command {
1919
this.usage = 'open';
2020
this.description = 'Open your current ReadMe project in the browser.';
2121
this.cmdCategory = CommandCategories.UTILITIES;
22-
this.position = 2;
22+
this.position = 1;
2323

2424
this.args = [];
2525
}

0 commit comments

Comments
 (0)