Upgrade NodeJS dependencies#327
Draft
data-douser wants to merge 1 commit into
Draft
Conversation
Contributor
Dependency ReviewThe following issues were found:
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR performs routine maintenance dependency upgrades across the monorepo (root workspace, server package, and VS Code extension package) to keep runtime and tooling dependencies current.
Changes:
- Upgraded server production deps (
adm-zip,js-yaml) and several dev tooling deps (eslint,prettier,typescript-eslint,vitest, etc.). - Upgraded root-level dev tooling deps (including
markdownlint-cli) to newer versions. - Updated the lockfile to reflect the new dependency graph (including updated transitive dependencies and engine constraints).
Show a summary per file
| File | Description |
|---|---|
server/package.json |
Bumps server runtime and dev dependencies (notably adm-zip and js-yaml). |
extensions/vscode/package.json |
Updates VS Code extension dev tooling/testing dependencies. |
package.json |
Updates root workspace dev tooling versions. |
package-lock.json |
Regenerates lockfile to reflect updated direct/transitive dependency versions and metadata. |
Review details
- Files reviewed: 3/6 changed files
- Comments generated: 0
- Review effort level: Low
data-douser
marked this pull request as draft
July 24, 2026 02:44
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates various dependencies across the project to their latest versions, focusing on both production and development packages. These updates help ensure compatibility, improved security, and access to new features.
Dependency updates:
Production dependencies:
adm-zipto^0.6.0andjs-yamlto^5.2.1inserver/package.jsonfor improved stability and security.Development dependencies:
@types/node,@vitest/coverage-v8,eslint,eslint-plugin-prettier,prettier,typescript-eslint, andvitestto their latest versions inextensions/vscode/package.jsonandserver/package.jsonto ensure compatibility and access to the latest linting and testing features. [1] [2]@vscode/test-cli,@vscode/test-electron, and@vscode/vsceinextensions/vscode/package.jsonto improve VS Code extension testing and publishing workflows.markdownlint-cliinpackage.jsonto^0.49.1for improved markdown linting support.These updates are routine maintenance to keep the codebase up to date and reduce technical debt.