Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 5 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@
"publish:ovsx": "ovsx publish",
"prepare": "husky"
},
"overrides": {
"serialize-javascript": ">=7.0.4"
Copy link

Copilot AI Mar 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

">=7.0.4" can allow unexpected future major versions (e.g., 8.x) which may introduce breaking changes. Prefer a constrained override (e.g., pin to a specific patched version, or use a major-safe range like ^7.0.4). If the intent is only to fix vulnerable older transitive versions, consider scoping the override key to the vulnerable range (e.g., serialize-javascript@<7.0.4) and set it to an exact patched version to keep installs deterministic.

Suggested change
"serialize-javascript": ">=7.0.4"
"serialize-javascript@<7.0.4": "7.0.4"

Copilot uses AI. Check for mistakes.
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
Expand Down
Loading