mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge vscode source through 1.62 release (#19981)
* Build breaks 1 * Build breaks * Build breaks * Build breaks * More build breaks * Build breaks (#2512) * Runtime breaks * Build breaks * Fix dialog location break * Update typescript * Fix ASAR break issue * Unit test breaks * Update distro * Fix breaks in ADO builds (#2513) * Bump to node 16 * Fix hygiene errors * Bump distro * Remove reference to node type * Delete vscode specific extension * Bump to node 16 in CI yaml * Skip integration tests in CI builds (while fixing) * yarn.lock update * Bump moment dependency in remote yarn * Fix drop-down chevron style * Bump to node 16 * Remove playwrite from ci.yaml * Skip building build scripts in hygine check
This commit is contained in:
@@ -40,13 +40,10 @@ import 'vs/workbench/api/browser/viewsExtensionPoint';
|
||||
|
||||
|
||||
//#region --- workbench parts
|
||||
|
||||
import 'vs/workbench/browser/parts/editor/editor.contribution';
|
||||
import 'vs/workbench/browser/parts/editor/editorPart';
|
||||
import 'vs/workbench/browser/parts/activitybar/activitybarPart';
|
||||
import 'vs/workbench/browser/parts/panel/panelPart';
|
||||
import 'vs/workbench/browser/parts/paneCompositePart';
|
||||
import 'vs/workbench/browser/parts/banner/bannerPart';
|
||||
import 'vs/workbench/browser/parts/sidebar/sidebarPart';
|
||||
import 'vs/workbench/browser/parts/statusbar/statusbarPart';
|
||||
import 'vs/workbench/browser/parts/views/viewsService';
|
||||
|
||||
@@ -72,7 +69,9 @@ import 'vs/workbench/services/activity/browser/activityService';
|
||||
import 'vs/workbench/services/keybinding/browser/keybindingService';
|
||||
import 'vs/workbench/services/untitled/common/untitledTextEditorService';
|
||||
import 'vs/workbench/services/textresourceProperties/common/textResourcePropertiesService';
|
||||
import 'vs/workbench/services/textfile/common/textEditorService';
|
||||
import 'vs/workbench/services/mode/common/workbenchModeService';
|
||||
import 'vs/workbench/services/model/common/workbenchModelService';
|
||||
import 'vs/workbench/services/commands/common/commandService';
|
||||
import 'vs/workbench/services/themes/browser/workbenchThemeService';
|
||||
import 'vs/workbench/services/label/common/labelService';
|
||||
@@ -114,8 +113,6 @@ import { IMarkerService } from 'vs/platform/markers/common/markers';
|
||||
import { MarkerService } from 'vs/platform/markers/common/markerService';
|
||||
import { ContextKeyService } from 'vs/platform/contextkey/browser/contextKeyService';
|
||||
import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
|
||||
import { IModelService } from 'vs/editor/common/services/modelService';
|
||||
import { ModelServiceImpl } from 'vs/editor/common/services/modelServiceImpl';
|
||||
import { ITextResourceConfigurationService } from 'vs/editor/common/services/textResourceConfigurationService';
|
||||
import { TextResourceConfigurationService } from 'vs/editor/common/services/textResourceConfigurationServiceImpl';
|
||||
import { IMenuService } from 'vs/platform/actions/common/actions';
|
||||
@@ -137,7 +134,6 @@ registerSingleton(IEditorWorkerService, EditorWorkerServiceImpl);
|
||||
registerSingleton(IMarkerDecorationsService, MarkerDecorationsService);
|
||||
registerSingleton(IMarkerService, MarkerService, true);
|
||||
registerSingleton(IContextKeyService, ContextKeyService);
|
||||
registerSingleton(IModelService, ModelServiceImpl, true);
|
||||
registerSingleton(ITextResourceConfigurationService, TextResourceConfigurationService);
|
||||
registerSingleton(IMenuService, MenuService, true);
|
||||
registerSingleton(IDownloadService, DownloadService, true);
|
||||
@@ -421,6 +417,9 @@ import 'vs/workbench/contrib/typeHierarchy/browser/typeHierarchy.contribution';
|
||||
import 'vs/workbench/contrib/codeEditor/browser/outline/documentSymbolsOutline';
|
||||
import 'vs/workbench/contrib/outline/browser/outline.contribution';
|
||||
|
||||
// Language Status
|
||||
import 'vs/workbench/contrib/languageStatus/browser/languageStatus.contribution';
|
||||
|
||||
// Experiments
|
||||
import 'vs/workbench/contrib/experiments/browser/experiments.contribution';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user