Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the package version to 18.0.0-1, upgrades the 'marked' and 'marked-repo' dependencies to version 18.0.0, and modifies the TypeScript configuration to set the root directory to './src'. A critical issue was identified where the 'package-lock.json' file is out of sync with the new version in 'package.json', which could lead to build failures in CI environments.
| { | ||
| "name": "@markedjs/testutils", | ||
| "version": "18.0.0-0", | ||
| "version": "18.0.0-1", |
There was a problem hiding this comment.
The version in package-lock.json (both at the root and in the packages[""] entry) is still set to 17.0.5-0, which is out of sync with the new version 18.0.0-1 in package.json. This discrepancy will cause npm ci to fail in CI environments. Please run npm install to ensure the lockfile is correctly updated and synchronized.
No description provided.