This is an automated email from the ASF dual-hosted git repository.

rthomas320 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new ca94e24  Remove dependency on Highlight Matching Tag extension
ca94e24 is described below

commit ca94e2448342fcf9b8aa6b4d9dd42dd4214d8246
Author: Michael Hoke <[email protected]>
AuthorDate: Mon Aug 4 17:49:59 2025 -0400

    Remove dependency on Highlight Matching Tag extension
---
 DEVELOPMENT.md       |  1 -
 package.json         |  1 -
 src/tests/runTest.ts | 20 +++++---------------
 3 files changed, 5 insertions(+), 17 deletions(-)

diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
index 1535b74..22efe57 100644
--- a/DEVELOPMENT.md
+++ b/DEVELOPMENT.md
@@ -228,7 +228,6 @@ Upon opening, VSCode may prompt you to install recommended 
extensions. Go ahead
 Daffodil-VSCode depends on the following extensions
 
 - [JAR Viewer - Visual Studio 
Marketplace](https://marketplace.visualstudio.com/items?itemName=wmanth.jar-viewer)
-- [Highlight Matching Tag - Visual Studio 
Marketplace](https://marketplace.visualstudio.com/items?itemName=vincaslt.highlight-matching-tag)
 
 ### Verifying Setup Can Build
 
diff --git a/package.json b/package.json
index 5d45d2b..2e08320 100644
--- a/package.json
+++ b/package.json
@@ -104,7 +104,6 @@
     "webpack-cli": "6.0.1"
   },
   "extensionDependencies": [
-    "vincaslt.highlight-matching-tag",
     "wmanth.jar-viewer"
   ],
   "main": "./dist/ext/extension.js",
diff --git a/src/tests/runTest.ts b/src/tests/runTest.ts
index ed618ac..2291131 100644
--- a/src/tests/runTest.ts
+++ b/src/tests/runTest.ts
@@ -60,21 +60,11 @@ async function main() {
       resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath)
 
     // Install required extensions
-    cp.spawnSync(
-      cli,
-      [
-        ...args,
-        '--install-extension',
-        'vincaslt.highlight-matching-tag',
-        '--install-extension',
-        'wmanth.jar-viewer',
-      ],
-      {
-        encoding: 'utf-8',
-        stdio: 'inherit',
-        shell: os.platform().toLowerCase() != 'darwin',
-      }
-    )
+    cp.spawnSync(cli, [...args, '--install-extension', 'wmanth.jar-viewer'], {
+      encoding: 'utf-8',
+      stdio: 'inherit',
+      shell: os.platform().toLowerCase() != 'darwin',
+    })
 
     // Download VS Code, unzip it and run the integration tests
     const runTestsResult = await runTests({

Reply via email to