- Notifications
You must be signed in to change notification settings - Fork42
Modernize dependencies and configurations#128
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Merged
Uh oh!
There was an error while loading.Please reload this page.
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
- Update major packages: meow@13, js-yaml@4, glob@11, prettier@3, husky@9, lint-staged@16- Migrate to ESM modules with "type": "module" in package.json- Update Husky to v9 format with simplified .husky/pre-commit configuration- Modernize meow CLI configuration with importMeta and shortFlag syntax- Update js-yaml API calls from deprecated safeLoad/safeDump to load/dump- Fix TypeScript configuration for Node16 module resolution with ESM- Update Jest configuration for ESM support with proper transform settings- Fix test files to use updated js-yaml API- Resolve all ESLint errors with proper type annotations- Update lint-staged configuration format- All tests passing (15/16, 1 skipped)🤖 Generated with [Claude Code](https://claude.ai/code)Co-Authored-By: Claude <noreply@anthropic.com>
- Replace pify with util.promisify() (Node.js built-in)- Replace mkdirp with fs.mkdirSync({ recursive: true }) (Node.js v10.12+)- Remove @types/pify and @types/mkdirp as no longer needed- Fix TypeScript type errors from promisify transformation- Add ESLint suppressions for necessary any types in Babel integration- Maintain backward compatibility while reducing external dependencies- All tests passing and build successfulThis reduces the package size and leverages modern Node.js APIs sincethe minimum required version is Node.js 20.🤖 Generated with [Claude Code](https://claude.ai/code)Co-Authored-By: Claude <noreply@anthropic.com>Since we've manually updated all dependencies to the latest versions andmodernized the codebase, the automated Renovate bot is no longer needed.Dependencies can be managed manually going forward.🤖 Generated with [Claude Code](https://claude.ai/code)Co-Authored-By: Claude <noreply@anthropic.com>
- Remove @akameco/tsconfig dependency- Create comprehensive modern tsconfig.json with: - ES2022 target for Node.js 20+ compatibility - Node16 module resolution for ESM support - Strict type checking with all recommended rules - Declaration and source map generation - Proper include/exclude patterns- All builds, tests, and linting passing with new configuration- Better type safety and development experience🤖 Generated with [Claude Code](https://claude.ai/code)Co-Authored-By: Claude <noreply@anthropic.com>
- Removed @types/jest as Jest provides built-in TypeScript support- All tests continue to pass without issues- Reduces bundle size and dependency count🤖 Generated with [Claude Code](https://claude.ai/code)Co-Authored-By: Claude <noreply@anthropic.com>
- Add comprehensive file patterns for better coverage- Include OS-specific files (.DS_Store, Thumbs.db)- Add IDE and editor temporary files- Include log files and runtime data patterns- Add coverage directories for testing tools🤖 Generated with [Claude Code](https://claude.ai/code)Co-Authored-By: Claude <noreply@anthropic.com>
5e8f220 intomaster 2 checks passed
Uh oh!
There was an error while loading.Please reload this page.
Sign up for freeto 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
Changes
🤖 Generated withClaude Code