diff options
Diffstat (limited to 'editors/vscode/files')
5 files changed, 11 insertions, 20 deletions
diff --git a/editors/vscode/files/patch-build_lib_layersChecker.ts b/editors/vscode/files/patch-build_lib_layersChecker.ts index a0e10357f73a..55aa891b281f 100644 --- a/editors/vscode/files/patch-build_lib_layersChecker.ts +++ b/editors/vscode/files/patch-build_lib_layersChecker.ts @@ -1,6 +1,6 @@ ---- build/lib/layersChecker.ts.orig 2025-04-09 23:39:47 UTC +--- build/lib/layersChecker.ts.orig 2025-05-07 12:32:30 UTC +++ build/lib/layersChecker.ts -@@ -410,7 +410,7 @@ function createProgram(tsconfigPath: string): ts.Progr +@@ -419,7 +419,7 @@ function createProgram(tsconfigPath: string): ts.Progr function createProgram(tsconfigPath: string): ts.Program { const tsConfig = ts.readConfigFile(tsconfigPath, ts.sys.readFile); diff --git a/editors/vscode/files/patch-build_lib_propertyInitOrderChecker.ts b/editors/vscode/files/patch-build_lib_propertyInitOrderChecker.ts index b62d13308595..24851b7064a4 100644 --- a/editors/vscode/files/patch-build_lib_propertyInitOrderChecker.ts +++ b/editors/vscode/files/patch-build_lib_propertyInitOrderChecker.ts @@ -1,6 +1,6 @@ ---- build/lib/propertyInitOrderChecker.ts.orig 2025-04-11 12:27:58 UTC +--- build/lib/propertyInitOrderChecker.ts.orig 2025-05-07 12:32:30 UTC +++ build/lib/propertyInitOrderChecker.ts -@@ -149,7 +149,7 @@ function createProgram(tsconfigPath: string): ts.Progr +@@ -109,7 +109,7 @@ function createProgram(tsconfigPath: string): ts.Progr function createProgram(tsconfigPath: string): ts.Program { const tsConfig = ts.readConfigFile(tsconfigPath, ts.sys.readFile); diff --git a/editors/vscode/files/patch-scripts_test.sh b/editors/vscode/files/patch-scripts_test.sh index 769958670a6d..2b5507b4b434 100644 --- a/editors/vscode/files/patch-scripts_test.sh +++ b/editors/vscode/files/patch-scripts_test.sh @@ -1,6 +1,6 @@ ---- scripts/test.sh.orig 2024-09-27 21:08:28 UTC +--- scripts/test.sh.orig 2025-05-12 00:03:54 UTC +++ scripts/test.sh -@@ -27,7 +27,7 @@ test -d node_modules || npm i +@@ -24,7 +24,7 @@ test -d node_modules || npm i test -d node_modules || npm i # Get electron diff --git a/editors/vscode/files/patch-src_vs_code_electron-main_app.ts b/editors/vscode/files/patch-src_vs_code_electron-main_app.ts index b4b40faa7494..c9f26abc8701 100644 --- a/editors/vscode/files/patch-src_vs_code_electron-main_app.ts +++ b/editors/vscode/files/patch-src_vs_code_electron-main_app.ts @@ -1,6 +1,6 @@ ---- src/vs/code/electron-main/app.ts.orig 2025-04-09 23:39:47 UTC +--- src/vs/code/electron-main/app.ts.orig 2025-05-07 12:32:30 UTC +++ src/vs/code/electron-main/app.ts -@@ -985,7 +985,7 @@ export class CodeApplication extends Disposable { +@@ -989,7 +989,7 @@ export class CodeApplication extends Disposable { services.set(IUpdateService, new SyncDescriptor(Win32UpdateService)); break; diff --git a/editors/vscode/files/patch-test_automation_src_electron.ts b/editors/vscode/files/patch-test_automation_src_electron.ts index 8309ccd6f047..5278a38c8fc8 100644 --- a/editors/vscode/files/patch-test_automation_src_electron.ts +++ b/editors/vscode/files/patch-test_automation_src_electron.ts @@ -1,15 +1,6 @@ ---- test/automation/src/electron.ts.orig 2025-04-09 23:39:47 UTC +--- test/automation/src/electron.ts.orig 2025-05-07 12:32:30 UTC +++ test/automation/src/electron.ts -@@ -41,7 +41,7 @@ export async function resolveElectronConfiguration(opt - args.push('--verbose'); - } - -- if (process.platform === 'linux') { -+ if (process.platform === 'linux' || process.platform === 'freebsd') { - // --disable-dev-shm-usage: when run on docker containers where size of /dev/shm - // partition < 64MB which causes OOM failure for chromium compositor that uses - // this partition for shared memory. -@@ -103,7 +103,7 @@ export function getDevElectronPath(): string { +@@ -84,7 +84,7 @@ export function getDevElectronPath(): string { switch (process.platform) { case 'darwin': return join(buildPath, 'electron', `${product.nameLong}.app`, 'Contents', 'MacOS', 'Electron'); @@ -18,7 +9,7 @@ return join(buildPath, 'electron', `${product.applicationName}`); case 'win32': return join(buildPath, 'electron', `${product.nameShort}.exe`); -@@ -116,7 +116,7 @@ export function getBuildElectronPath(root: string): st +@@ -97,7 +97,7 @@ export function getBuildElectronPath(root: string): st switch (process.platform) { case 'darwin': return join(root, 'Contents', 'MacOS', 'Electron'); |