chore: willboosterify this repo#143
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the build-ts dependency to version 17.1.10 and downgrades @typescript/native-preview to version 7.0.0-dev.20260421.2. A review comment identifies a version inconsistency where the top-level @typescript/native-preview version in package.json is older than the version required by the newly updated build-ts, which would result in redundant package installations in the dependency tree.
| "@tsconfig/node24": "24.0.4", | ||
| "@types/node": "24.12.2", | ||
| "@typescript/native-preview": "7.0.0-dev.20260427.1", | ||
| "@typescript/native-preview": "7.0.0-dev.20260421.2", |
There was a problem hiding this comment.
The version of @typescript/native-preview is being downgraded to 7.0.0-dev.20260421.2, but the updated build-ts (v17.1.10) depends on 7.0.0-dev.20260427.1. This inconsistency will lead to multiple versions of the same package being installed in the dependency tree. It is recommended to align the version in package.json with the one required by build-ts to avoid redundancy.
| "@typescript/native-preview": "7.0.0-dev.20260421.2", | |
| "@typescript/native-preview": "7.0.0-dev.20260427.1", |
References
- Simplify code as much as possible to eliminate redundancy. Aligning dependency versions avoids redundant package installations. (link)
No description provided.