mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 12:47:14 +00:00
* Revert "GitHub - revert ESM migration (#247322)"
This reverts commit 2047ab0fff.
* use `"@vscode/extension-telemetry": "^1.0.0"` which doesn't use default export anymore
19 lines
780 B
TypeScript
19 lines
780 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 { publishRepository } from './publish.js';
|
|
import { API as GitAPI, RemoteSourcePublisher, Repository } from './typings/git.js';
|
|
|
|
export class GithubRemoteSourcePublisher implements RemoteSourcePublisher {
|
|
readonly name = 'GitHub';
|
|
readonly icon = 'github';
|
|
|
|
constructor(private gitAPI: GitAPI) { }
|
|
|
|
publishRepository(repository: Repository): Promise<void> {
|
|
return publishRepository(this.gitAPI, repository);
|
|
}
|
|
}
|