chore: bump all dependencies to latest - #667
Merged
Merged
Conversation
Major version bumps: - @eik/eslint-config 1 → 2 (adds e18e lint rules) - eslint 9 → 10 - npm-run-all2 8 → 9 - typescript 5 → 7 TypeScript 7 changes (ESM-only, restructured API): - Added rootDir and types:[node] to tsconfig.json - Added rootDir, types:[node], noImplicitAny:false to tsconfig.test.json - Added tap type-strip-only config to skip ts-node (incompatible with TS7) - Added src/types.d.ts to declare css-url-parser module (no bundled types) - Included *.d.ts in tsconfig include pattern eslint-config 2.x changes: - Hoisted /^~/ regex to module scope (e18e/prefer-static-regex)
|
🎉 This PR is included in version 5.0.31 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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
Major version bumps
@eik/eslint-configeslintnpm-run-all2typescriptTypeScript 7 migration
TypeScript 7 restructured its package to ESM-only and removed the legacy compiler API. Changes needed:
tsconfig.json/tsconfig.test.json: added explicitrootDirandtypes: ["node"](now required by TS7)package.json: addedtap.type-strip-only: trueto skip ts-node (which relies on the removed compiler API) in favour of Node.js native type strippingsrc/types.d.ts: added ambient module declaration forcss-url-parser(no bundled types; TS7 is stricter about this)eslint-config 2.x
The new
e18e/prefer-static-regexrule flagged a regex insrc/plugin.js. Hoisted/^~/to module scope asRE_WEBPACK_TILDE.