-
Notifications
You must be signed in to change notification settings - Fork 17
Release #766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
feat: nodejs24
Pre-release
## [7.16.0-beta.1](v7.15.1...v7.16.0-beta.1) (2025-12-15) ### Features * nodejs24 ([714dc23](714dc23)) ### Bug Fixes * modify what files are taken when publishing ([8c45c26](8c45c26)) * node version in ci, trigger release ([3027bdb](3027bdb)) * token in ci ([fee5d50](fee5d50)) * update package.json ([d3a00c7](d3a00c7))
## [7.16.0-beta.1](v7.15.1...v7.16.0-beta.1) (2025-12-15) ### Features * nodejs24 ([714dc23](714dc23)) ### Bug Fixes * modify what files are taken when publishing ([8c45c26](8c45c26)) * node version in ci, trigger release ([3027bdb](3027bdb)) * token in ci ([fee5d50](fee5d50)) * token issue ? ([cf3b3e2](cf3b3e2)) * update package.json ([d3a00c7](d3a00c7))
## [7.16.0-beta.1](v7.15.1...v7.16.0-beta.1) (2025-12-15) ### Features * bump deps ([82b9d3e](82b9d3e)) * bump deps ([7cb45d4](7cb45d4)) * github_token ([5ca7b42](5ca7b42)) * nodejs24 ([714dc23](714dc23)) ### Bug Fixes * modify what files are taken when publishing ([8c45c26](8c45c26)) * node version in ci, trigger release ([3027bdb](3027bdb)) * remove node_token to force trusted publisher maybe ? ([d877eb9](d877eb9)) * remove the [@scope](https://github.com/scope) of semantic ([fb33ec4](fb33ec4)) * token in ci ([fee5d50](fee5d50)) * token issue ? ([cf3b3e2](cf3b3e2)) * update package.json ([d3a00c7](d3a00c7))
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "compilerOptions": { | ||
| "declaration": true, | ||
| "listEmittedFiles": true, | ||
| "outDir": "out", | ||
| "module": "commonjs", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Build fails because index.ts lies outside configured rootDir
Setting outDir now forces TypeScript to enforce rootDir: "src/" while the include list still contains the top-level index.ts; running the new npm run build (tsc --build tsconfig.json) will emit TS6059 because index.ts is not under src/, so the build stops before generating out/ or the Vite bundle. Updating rootDir or moving the entry file is needed to restore a successful build.
Useful? React with 👍 / 👎.
|
🎉 This PR is included in version 7.16.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Overview
Multiple things have been implemented for a pretty long PR.
Important things are
Maintainability
NodeJS 24
Typescript