mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
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:
parent
72cb04ead1
commit
0d968a0652
1 changed files with 4 additions and 4 deletions
8
js/VSC-Extension/package-lock.json
generated
8
js/VSC-Extension/package-lock.json
generated
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue