mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
GitHub - revert ESM migration (#247322)
* Revert "fix github extension bundling (#247314)" This reverts commit0cffb673f5. * Revert "migrate github-extension to ESM" This reverts commit493874c390. * Add missing JS file
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { Uri, env, l10n, workspace } from 'vscode';
|
||||
import { RemoteSourceProvider, RemoteSource, RemoteSourceAction } from './typings/git-base.js';
|
||||
import { getOctokit } from './auth.js';
|
||||
import { RemoteSourceProvider, RemoteSource, RemoteSourceAction } from './typings/git-base';
|
||||
import { getOctokit } from './auth';
|
||||
import { Octokit } from '@octokit/rest';
|
||||
import { getRepositoryFromQuery, getRepositoryFromUrl } from './util.js';
|
||||
import { getBranchLink, getVscodeDevHost } from './links.js';
|
||||
import { getRepositoryFromQuery, getRepositoryFromUrl } from './util';
|
||||
import { getBranchLink, getVscodeDevHost } from './links';
|
||||
|
||||
function asRemoteSource(raw: any): RemoteSource {
|
||||
const protocol = workspace.getConfiguration('github').get<'https' | 'ssh'>('gitProtocol');
|
||||
|
||||
Reference in New Issue
Block a user