From 3ea352cde0fff0475fa43d3fbcca2fa735a9d8ca Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Tue, 13 Mar 2018 11:25:05 +0100 Subject: [PATCH] Remove edcore.main --- build/monaco/package.json | 2 +- src/vs/editor/edcore.main.ts | 17 ----------------- src/vs/editor/editor.main.ts | 13 ++++++++++++- 3 files changed, 13 insertions(+), 19 deletions(-) delete mode 100644 src/vs/editor/edcore.main.ts diff --git a/build/monaco/package.json b/build/monaco/package.json index 89113e83532..8bc10eeadfd 100644 --- a/build/monaco/package.json +++ b/build/monaco/package.json @@ -1,7 +1,7 @@ { "name": "monaco-editor-core", "private": true, - "version": "0.11.2", + "version": "0.11.3", "description": "A browser based code editor", "author": "Microsoft Corporation", "license": "MIT", diff --git a/src/vs/editor/edcore.main.ts b/src/vs/editor/edcore.main.ts deleted file mode 100644 index 3f2c56b5d16..00000000000 --- a/src/vs/editor/edcore.main.ts +++ /dev/null @@ -1,17 +0,0 @@ -/*--------------------------------------------------------------------------------------------- - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - *--------------------------------------------------------------------------------------------*/ - -'use strict'; - -import 'vs/editor/editor.all'; -import 'vs/editor/standalone/browser/accessibilityHelp/accessibilityHelp'; -import 'vs/editor/standalone/browser/inspectTokens/inspectTokens'; -import 'vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard'; -import 'vs/editor/standalone/browser/quickOpen/quickOutline'; -import 'vs/editor/standalone/browser/quickOpen/gotoLine'; -import 'vs/editor/standalone/browser/quickOpen/quickCommand'; -import 'vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast'; - -export * from 'vs/editor/editor.api'; diff --git a/src/vs/editor/editor.main.ts b/src/vs/editor/editor.main.ts index 04bdbef71ee..3f2c56b5d16 100644 --- a/src/vs/editor/editor.main.ts +++ b/src/vs/editor/editor.main.ts @@ -3,4 +3,15 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -export * from 'vs/editor/edcore.main'; +'use strict'; + +import 'vs/editor/editor.all'; +import 'vs/editor/standalone/browser/accessibilityHelp/accessibilityHelp'; +import 'vs/editor/standalone/browser/inspectTokens/inspectTokens'; +import 'vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard'; +import 'vs/editor/standalone/browser/quickOpen/quickOutline'; +import 'vs/editor/standalone/browser/quickOpen/gotoLine'; +import 'vs/editor/standalone/browser/quickOpen/quickCommand'; +import 'vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast'; + +export * from 'vs/editor/editor.api';