Skip to content
Open
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
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/wasm-node": "4.60.0",
"@rollup/wasm-node": "4.60.1",
"@stylistic/eslint-plugin": "^5.0.0",
"@tony.ganchev/eslint-plugin-header": "~3.3.1",
"@types/babel__core": "7.20.5",
Expand All @@ -92,8 +92,8 @@
"@types/yargs": "^17.0.20",
"@types/yargs-parser": "^21.0.0",
"@types/yarnpkg__lockfile": "^1.1.5",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
Comment on lines +95 to +96
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

The pnpm-lock.yaml file indicates that version 8.57.2 of several @typescript-eslint packages (such as @typescript-eslint/types) is still being retained in the dependency graph alongside the new 8.58.0 version. To avoid dependency duplication and ensure consistent linting behavior across the monorepo, it is recommended to synchronize these versions. Note that updating to 8.58.0 is particularly important here as it expands the supported TypeScript peer dependency range to <6.1.0, which correctly accommodates the 6.0.2 version currently specified in the lockfile (which was technically a violation of the 8.57.2 constraint of <6.0.0).

"ajv": "8.18.0",
"buffer": "6.0.3",
"esbuild": "0.27.3",
Expand Down Expand Up @@ -122,15 +122,15 @@
"prettier": "^3.0.0",
"puppeteer": "24.40.0",
"quicktype-core": "23.2.6",
"rollup": "4.60.0",
"rollup": "4.60.1",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

While rollup is updated to 4.60.1 in the root, the lockfile shows that 4.60.0 is still present and used by other packages in the workspace (e.g., @rollup/plugin-json and various @rollup/rollup-* platform-specific packages still have entries tied to 4.60.0). Since 4.60.1 contains a fix for a caching issue where side-effect imports could be incorrectly dropped, it is recommended to update all instances of rollup across the monorepo to ensure build correctness and consistency.

"rollup-license-plugin": "~3.2.0",
"rollup-plugin-dts": "6.4.1",
"rollup-plugin-sourcemaps2": "0.5.6",
"semver": "7.7.4",
"source-map-support": "0.5.21",
"tslib": "2.8.1",
"typescript": "6.0.2",
"undici": "7.24.6",
"undici": "7.24.7",
"unenv": "^1.10.0",
"verdaccio": "6.3.2",
"verdaccio-auth-memory": "^10.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/angular/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"parse5-html-rewriting-stream": "8.0.0",
"picomatch": "4.0.4",
"piscina": "5.1.4",
"rolldown": "1.0.0-rc.12",
"rolldown": "1.0.0-rc.13",
"sass": "1.98.0",
"semver": "7.7.4",
"source-map-support": "0.5.21",
Expand All @@ -46,7 +46,7 @@
"watchpack": "2.5.1"
},
"optionalDependencies": {
"lmdb": "3.5.2"
"lmdb": "3.5.3"
},
"devDependencies": {
"@angular-devkit/core": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/angular/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"@angular-devkit/schematics": "workspace:0.0.0-PLACEHOLDER",
"@inquirer/prompts": "8.3.2",
"@listr2/prompt-adapter-inquirer": "4.2.2",
"@modelcontextprotocol/sdk": "1.28.0",
"@modelcontextprotocol/sdk": "1.29.0",
"@schematics/angular": "workspace:0.0.0-PLACEHOLDER",
"@yarnpkg/lockfile": "1.1.0",
"algoliasearch": "5.50.0",
"algoliasearch": "5.50.1",
"ini": "6.0.0",
"jsonc-parser": "3.3.1",
"listr2": "10.2.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"@angular/ssr": "workspace:*",
"browser-sync": "3.0.4",
"ng-packagr": "22.0.0-next.1",
"undici": "7.24.6"
"undici": "7.24.7"
},
"peerDependencies": {
"@angular/compiler-cli": "0.0.0-ANGULAR-FW-PEER-DEP",
Expand Down
Loading
Loading