Skip to content

Commit 13b4c85

Browse files
authored
Merge branch 'master' into remove-fields-from-irawfilematch
2 parents d01bed4 + 7cc0c75 commit 13b4c85

439 files changed

Lines changed: 5175 additions & 4490 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
**/vs/css.build.js
44
**/vs/css.js
55
**/vs/loader.js
6-
**/promise-polyfill/**
76
**/insane/**
87
**/marked/**
98
**/test/**/*.js

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
"external",
3636
"status",
3737
"origin",
38-
"orientation"
38+
"orientation",
39+
"context"
3940
], // non-complete list of globals that are easy to access unintentionally
4041
"no-var": "warn",
4142
"jsdoc/no-types": "warn",

build/builtInExtensions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
{
33
"name": "ms-vscode.node-debug",
4-
"version": "1.43.1",
4+
"version": "1.43.2",
55
"repo": "https://github.com/Microsoft/vscode-node-debug",
66
"metadata": {
77
"id": "b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6",
@@ -46,7 +46,7 @@
4646
},
4747
{
4848
"name": "ms-vscode.js-debug-nightly",
49-
"version": "2020.2.2507",
49+
"version": "2020.2.2617",
5050
"forQualities": [
5151
"insider"
5252
],

build/gulpfile.editor.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,8 @@ const extractEditorSrcTask = task.define('extract-editor-src', () => {
7272
apiusages,
7373
extrausages
7474
],
75-
libs: [
76-
`lib.es5.d.ts`,
77-
`lib.dom.d.ts`,
78-
`lib.webworker.importscripts.d.ts`
79-
],
8075
shakeLevel: 2, // 0-Files, 1-InnerFile, 2-ClassMembers
81-
importIgnorePattern: /(^vs\/css!)|(promise-polyfill\/polyfill)/,
76+
importIgnorePattern: /(^vs\/css!)/,
8277
destRoot: path.join(root, 'out-editor-src'),
8378
redirects: []
8479
});

build/gulpfile.hygiene.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ const copyrightFilter = [
114114
'!**/*.disabled',
115115
'!**/*.code-workspace',
116116
'!**/*.js.map',
117-
'!**/promise-polyfill/polyfill.js',
118117
'!build/**/*.init',
119118
'!resources/linux/snap/snapcraft.yaml',
120119
'!resources/linux/snap/electron-launch',

build/lib/asar.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55
'use strict';
66
Object.defineProperty(exports, "__esModule", { value: true });
7+
exports.createAsar = void 0;
78
const path = require("path");
89
const es = require("event-stream");
910
const pickle = require('chromium-pickle-js');

build/lib/bundle.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Licensed under the MIT License. See License.txt in the project root for license information.
55
*--------------------------------------------------------------------------------------------*/
66
Object.defineProperty(exports, "__esModule", { value: true });
7+
exports.bundle = void 0;
78
const fs = require("fs");
89
const path = require("path");
910
const vm = require("vm");

build/lib/compilation.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55
'use strict';
66
Object.defineProperty(exports, "__esModule", { value: true });
7+
exports.watchTask = exports.compileTask = void 0;
78
const es = require("event-stream");
89
const fs = require("fs");
910
const gulp = require("gulp");

build/lib/electron.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55
'use strict';
66
Object.defineProperty(exports, "__esModule", { value: true });
7+
exports.config = exports.getElectronVersion = void 0;
78
const fs = require("fs");
89
const path = require("path");
910
const vfs = require("vinyl-fs");

build/lib/eslint/utils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Licensed under the MIT License. See License.txt in the project root for license information.
55
*--------------------------------------------------------------------------------------------*/
66
Object.defineProperty(exports, "__esModule", { value: true });
7+
exports.createImportRuleListener = void 0;
78
function createImportRuleListener(validateImport) {
89
function _checkImport(node) {
910
if (node && node.type === 'Literal' && typeof node.value === 'string') {

0 commit comments

Comments
 (0)