-
Notifications
You must be signed in to change notification settings - Fork 0
Update workflows, dependencies, and code structure for consistency #34
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
Merged
Conversation
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
## Dependencies - Update @localazy/languages from ^0.1.6 to ^0.1.11 - Update @localazy/eslint-config from ^1.0.0-beta.2 to ^1.3.0 - Update @localazy/prettier-config from ^1.0.0-beta.2 to ^1.2.0 - Update @localazy/tsconfig from ^1.0.0-beta.4 to ^1.1.1 - Update @types/node from ^22.17.1 to ^22.18.0 - Update eslint from ^9.32.0 to ^9.34.0 - Update fetch-mock from ^12.5.3 to ^12.5.4 - Update unplugin-replace from ^0.2.1 to ^0.6.1 - Update vite from ^6.3.5 to ^7.1.3 - Update vite-plugin-node-polyfills from ^0.23.0 to ^0.24.0
- Replace `.prettierrc.js` with `"prettier"` key in `package.json` - Update `tsconfig.json` to use `tsconfig.package.json` and new compiler options - Adjust ESLint config syntax for correct options import
- Refactor all imports across types and test files to use `import type` for TypeScript type-only declarations. - Replace `fs` import with `node:fs` for consistency.
…dling - Replace direct null/undefined checks with `assertNotNull` in test files. - Ensure stricter type safety and add consistency across file and API tests. - Add missing `assertNotNull` utility function under `@tests/support`.
- Enforce `.js` extension for both absolute and relative imports for better compatibility. - Update ESLint to enforce `forceJsExtensions`. - Remove unused `nodePolyfills` plugin in `vite.config.ts`.
- Add `scripts/node-test-matrix.sh` for running tests across Node.js versions (20, 22, 24). - Update `.github/workflows/qa.yml` to utilize a Node.js version matrix in CI. - Add new `test:matrix` script to `package.json` for local testing. - Refine `package.json` by simplifying `files` and adding Node.js engine requirement.
a22636f to
1fa80c1
Compare
vaclavhodek
approved these changes
Aug 28, 2025
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.
Description
.jsextensions for improved compatibility.assertNotNullutility function for stricter type safety in tests.import typein TypeScript files.