-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 1 vulnerabilities #93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -48,8 +48,8 @@ | |||||||||
| "classnames": "^2.2.6", | ||||||||||
| "decimal.js": "^10.2.0", | ||||||||||
| "lodash-es": "^4.17.15", | ||||||||||
| "npm": "^6.11.3", | ||||||||||
| "nuxt": "^2.9.2", | ||||||||||
| "npm": "^7.21.0", | ||||||||||
| "nuxt": "^3.0.0", | ||||||||||
|
||||||||||
| "nuxt": "^3.0.0", | |
| "nuxt": "^2.17.0", |
Copilot
AI
Jan 28, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The yarn.lock file is out of sync with these package.json changes. The lock file still references nuxt@^2.9.2, but package.json now specifies nuxt ^3.0.0. This mismatch will cause inconsistent dependency resolution. After updating package.json, yarn.lock must be regenerated by running yarn install to ensure all dependencies and their transitive dependencies are correctly resolved for the new versions.
| "nuxt": "^3.0.0", | |
| "nuxt": "^2.9.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The npm package should not be listed as a runtime dependency in package.json. npm is a package manager that should be installed globally on the system, not as a project dependency. Including it here can cause conflicts with the system's npm installation and creates unnecessary bloat in node_modules. If the tar vulnerability is the concern, it should be resolved by upgrading packages that transitively depend on tar, not by adding npm as a dependency.