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)
This commit is contained in:
Kevin Turcios 2026-04-23 05:44:18 -05:00 committed by GitHub
parent 72cb04ead1
commit 0d968a0652
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@
"@codeflash/types": "*", "@codeflash/types": "*",
"@sentry/node": "^10.20.0", "@sentry/node": "^10.20.0",
"@vscode/python-extension": "^1.0.5", "@vscode/python-extension": "^1.0.5",
"diff": "^8.0.2", "diff": "^8.0.3",
"marked": "^15.0.12", "marked": "^15.0.12",
"p-queue": "^8.1.0", "p-queue": "^8.1.0",
"posthog-node": "^5.10.1", "posthog-node": "^5.10.1",
@ -5006,9 +5006,9 @@
} }
}, },
"node_modules/diff": { "node_modules/diff": {
"version": "8.0.2", "version": "8.0.4",
"resolved": "https://registry.npmjs.org/diff/-/diff-8.0.2.tgz", "resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
"integrity": "sha512-sSuxWU5j5SR9QQji/o2qMvqRNYRDOcBTgsJ/DeCf4iSN4gW+gNMXM7wFIP+fdXZxoNiAnHUTGjCr+TSWXdRDKg==", "integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"engines": { "engines": {
"node": ">=0.3.1" "node": ">=0.3.1"