Merged
Conversation
Bump @babel/core, @babel/plugin-transform-class-properties, @babel/preset-env, dotenv, and prettier to latest minor versions. Update @rollup/plugin-babel to v7 and typescript to v6. Fix TS 6 breaking changes: explicit moduleResolution "node10" with ignoreDeprecations flag, and explicit rootDir for declarations.
2bb955d to
40a114f
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s JavaScript/TypeScript toolchain dependencies (Babel, Rollup plugin, TypeScript, dotenv, Prettier) and adjusts TypeScript configuration to accommodate the upgraded compiler/tooling.
Changes:
- Bumped multiple devDependencies including Babel packages, dotenv, Prettier, TypeScript, and
@rollup/plugin-babel. - Updated
tsconfig.jsonto usemoduleResolution: node10and addedignoreDeprecations. - Updated declaration build config to set an explicit
rootDirfor type emission.
Reviewed changes
Copilot reviewed 2 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
package.json |
Updates toolchain/dev dependency versions (Babel, Rollup Babel plugin, dotenv, Prettier, TypeScript). |
yarn.lock |
Lockfile updates reflecting the dependency upgrades. |
tsconfig.json |
Adjusts module resolution and deprecation handling for the TypeScript upgrade. |
tsconfig-declarations.json |
Tweaks declaration generation output behavior by setting rootDir. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
edorivai
approved these changes
Apr 2, 2026
Collaborator
edorivai
left a comment
There was a problem hiding this comment.
LGTM.
Note to ourselves; maybe it's time to migrate back to npm from yarn. Also I think it's better to not use lockfiles for libraries like this.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
@babel/core,@babel/plugin-transform-class-properties,@babel/preset-env,dotenv, andprettierto latest minor versions@rollup/plugin-babelfrom v6 to v7 (only drops Rollup 1 support, no other breaking changes)typescriptfrom v5 to v6moduleResolution: "node10"withignoreDeprecationsflag, and explicitrootDirfor declaration buildsTest plan
yarn buildpassesyarn testpasses (53 suites, 160 tests)