forked from openkylin/kylin-code
24 lines
858 B
TypeScript
24 lines
858 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 { DisposableStore } from './util';
|
|
|
|
export function registerCommands(gitAPI: GitAPI): vscode.Disposable {
|
|
const disposables = new DisposableStore();
|
|
|
|
disposables.add(vscode.commands.registerCommand('github.publish', async () => {
|
|
try {
|
|
publishRepository(gitAPI);
|
|
} catch (err) {
|
|
vscode.window.showErrorMessage(err.message);
|
|
}
|
|
}));
|
|
|
|
return disposables;
|
|
}
|