Skip to content

Commit 0793a0b

Browse files
committed
- Maintain original register command ordering
1 parent 64ca693 commit 0793a0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ export function register(ctx: WorkspaceContext): vscode.Disposable[] {
8585
vscode.commands.registerCommand(Commands.RESOLVE_DEPENDENCIES, () =>
8686
resolveDependencies(ctx)
8787
),
88-
vscode.commands.registerCommand(Commands.RUN, () => runBuild(ctx)),
89-
vscode.commands.registerCommand(Commands.DEBUG, () => debugBuild(ctx)),
90-
vscode.commands.registerCommand(Commands.CLEAN_BUILD, () => cleanBuild(ctx)),
9188
vscode.commands.registerCommand(Commands.UPDATE_DEPENDENCIES, () =>
9289
updateDependencies(ctx)
9390
),
91+
vscode.commands.registerCommand(Commands.RUN, () => runBuild(ctx)),
92+
vscode.commands.registerCommand(Commands.DEBUG, () => debugBuild(ctx)),
93+
vscode.commands.registerCommand(Commands.CLEAN_BUILD, () => cleanBuild(ctx)),
9494
vscode.commands.registerCommand(Commands.RUN_TESTS_MULTIPLE_TIMES, item => {
9595
if (ctx.currentFolder) {
9696
return runTestMultipleTimes(ctx.currentFolder, item, false);

0 commit comments

Comments
 (0)