Skip to content

Commit

Permalink
feat(aureliaCLICommands): add au run to command pallet
Browse files Browse the repository at this point in the history
Add au run command to the command pallet.
  • Loading branch information
Steve Hartzog committed Nov 17, 2016
1 parent 2d6428d commit 9b61c27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/src/client/aureliaCLICommands.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/client/aureliaCLICommands.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/client/aureliaCLICommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export default class AureliaCliCommands {
vscode.commands.registerCommand('extension.auNew', () => this.auNew(outputChannel)),
vscode.commands.registerCommand('extension.auGenerate', () => this.auGenerate(outputChannel)),
vscode.commands.registerCommand('extension.auTest', () => this.runCommand(['test'], outputChannel, false)),
vscode.commands.registerCommand('extension.auBuild', () => this.auBuild(outputChannel)));
vscode.commands.registerCommand('extension.auRun', () => this.runCommand(['run'], outputChannel, true)),
vscode.commands.registerCommand('extension.auBuild', () => this.auBuild(outputChannel)),
vscode.commands.registerCommand('extension.auRun', () => this.runCommand(['run'], outputChannel, true)));
}

private static async auNew(outputChannel) {
Expand Down

0 comments on commit 9b61c27

Please sign in to comment.