From 14c3f5a1769d8a1cd168c34f8f1f9f5b16d469ea Mon Sep 17 00:00:00 2001 From: wangpenglong Date: Wed, 19 Apr 2023 11:02:30 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=B1=E4=BA=8Ejs-debug=E7=9A=84=E5=86=85?= =?UTF-8?q?=E7=BD=AE=E6=8F=92=E4=BB=B6ID=E6=94=B9=E5=8F=98,=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E9=9C=80=E8=A6=81=E6=96=B0ID=E5=88=B0=E9=9C=80?= =?UTF-8?q?=E8=A6=81=E7=9A=84=E4=BD=8D=E7=BD=AE.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/lib/extensions.ts | 3 ++- extensions/debug-auto-launch/src/extension.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build/lib/extensions.ts b/build/lib/extensions.ts index 312b830b..c0fcdc85 100644 --- a/build/lib/extensions.ts +++ b/build/lib/extensions.ts @@ -294,7 +294,8 @@ const marketplaceWebExtensionsExclude = new Set([ 'ms-vscode.node-debug2', 'ms-vscode.js-debug-companion', 'ms-vscode.js-debug', - 'ms-vscode.vscode-js-profile-table' + 'ms-vscode.vscode-js-profile-table', + 'KylinIDETeam.js-debug' ]); interface IBuiltInExtension { diff --git a/extensions/debug-auto-launch/src/extension.ts b/extensions/debug-auto-launch/src/extension.ts index a4a48f5c..aa435f7f 100644 --- a/extensions/debug-auto-launch/src/extension.ts +++ b/extensions/debug-auto-launch/src/extension.ts @@ -366,7 +366,8 @@ async function getIpcAddress(context: vscode.ExtensionContext) { // todo: make a way in the API to read environment data directly without activating js-debug? const jsDebugPath = vscode.extensions.getExtension('ms-vscode.js-debug-nightly')?.extensionPath || - vscode.extensions.getExtension('ms-vscode.js-debug')?.extensionPath; + vscode.extensions.getExtension('ms-vscode.js-debug')?.extensionPath || + vscode.extensions.getExtension('KylinIDETeam.js-debug')?.extensionPath; const settingsValue = getJsDebugSettingKey(); if (cachedIpc?.jsDebugPath === jsDebugPath && cachedIpc?.settingsValue === settingsValue) {