24 lines
884 B
TypeScript
24 lines
884 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as vscode from 'vscode';
|
|
import { API as GitAPI } from './typings/git';
|
|
import { publishRepository } from './publish';
|
|
import { combinedDisposable } from './util';
|
|
|
|
export function registerCommands(gitAPI: GitAPI): vscode.Disposable {
|
|
const disposables: vscode.Disposable[] = [];
|
|
|
|
disposables.push(vscode.commands.registerCommand('github.publish', async () => {
|
|
try {
|
|
publishRepository(gitAPI);
|
|
} catch (err) {
|
|
vscode.window.showErrorMessage(err.message);
|
|
}
|
|
}));
|
|
|
|
return combinedDisposable(disposables);
|
|
}
|