From 0d968a06522954e801baddf312772d1eb7bab3cd Mon Sep 17 00:00:00 2001 From: Kevin Turcios <106575910+KRRT7@users.noreply.github.com> Date: Thu, 23 Apr 2026 05:44:18 -0500 Subject: [PATCH] Fix VSCode extension build: regenerate package-lock.json (#2617) ## Summary - Snyk PR #2305 bumped `diff` from 8.0.2 to 8.0.3 in `js/VSC-Extension/package.json` without regenerating the lockfile - This causes `npm ci` to fail with a "package.json and package-lock.json are in sync" error - Ran `npm install` to regenerate `package-lock.json` (resolves `diff` to 8.0.4, the latest matching `^8.0.3`) ## Test plan - [x] Verified `npm ci` succeeds with the updated lockfile - [x] Diff is minimal: only the `diff` package version change (4 insertions, 4 deletions) --- js/VSC-Extension/package-lock.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/VSC-Extension/package-lock.json b/js/VSC-Extension/package-lock.json index f70211b32..e6797c171 100644 --- a/js/VSC-Extension/package-lock.json +++ b/js/VSC-Extension/package-lock.json @@ -15,7 +15,7 @@ "@codeflash/types": "*", "@sentry/node": "^10.20.0", "@vscode/python-extension": "^1.0.5", - "diff": "^8.0.2", + "diff": "^8.0.3", "marked": "^15.0.12", "p-queue": "^8.1.0", "posthog-node": "^5.10.1", @@ -5006,9 +5006,9 @@ } }, "node_modules/diff": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.2.tgz", - "integrity": "sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==", + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz", + "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==", "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1"