chore: willboosterify this repo#24
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates several dependencies, including @willbooster/wb and build-ts, along with their associated lockfile entries. A review comment suggests aligning the version of @typescript/native-preview in package.json with the version introduced transitively by build-ts to avoid installing multiple versions and reduce dependency bloat.
| "@willbooster/wb": "13.12.14", | ||
| "build-ts": "17.1.10", | ||
| "@willbooster/wb": "13.12.15", | ||
| "build-ts": "17.1.12", |
There was a problem hiding this comment.
Updating build-ts to version 17.1.12 introduces a newer version of @typescript/native-preview (7.0.0-dev.20260503.1) as a transitive dependency. However, your package.json still lists an older version (7.0.0-dev.20260421.2) as a direct dependency.
This results in two different versions of @typescript/native-preview being installed. To improve consistency and reduce potential dependency bloat, consider aligning these versions. You could update the direct dependency in package.json to 7.0.0-dev.20260503.1 to match the version required by build-ts.
No description provided.