Update dependencies#1
Merged
Merged
Conversation
- Update @biomejs/biome 1.5.3 → 2.3.0 - Update @commitlint/cli 18.6.1 → 20.1.0 - Update @commitlint/config-conventional 18.6.3 → 20.0.0 - Update @vitest/coverage-v8 1.6.1 → 4.0.3 - Update turbo 1.13.4 → 2.5.8 - Update vitest 1.6.1 → 4.0.3
- Rename 'pipeline' to 'tasks' in turbo.json (Turbo v2 requirement) - Migrate biome.json to v2 schema using biome migrate - Update schema URL to 2.3.0 - Move organizeImports to assist.actions.source - Rename trailingComma to trailingCommas in JavaScript formatter
- Remove deprecated shebang and husky.sh sourcing for v10 compatibility - Update Biome flag: --apply → --write (Biome v2 requirement) - Fix pre-commit hook and lint-staged script
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.
This pull request updates project tooling and dependencies, modernizes configuration files, and introduces some minor code style improvements. The main focus is on upgrading Biome and Commitlint, aligning scripts to use
pnpm, and improving type-only import usage for better performance and clarity.Tooling and Dependency Upgrades:
@biomejs/biometo version 2.3.0 and updated thebiome.jsonschema and configuration to match the new version, including changes to import organization and formatter settings.@commitlint/cliand@commitlint/config-conventionalto the latest major versions for improved commit message linting.turboandvitestdependencies to their latest versions.Script and Configuration Changes:
pnpminstead ofnpx/npm, and updated the pre-commit script to run a newlint-stagedcommand using Biome's--writeflag for auto-fixing.turbo.jsonto use the newtasksproperty instead ofpipeline, aligning with the latest Turbo configuration format.Code Quality Improvements:
packages/feature-a/src/index.tsandpackages/utils/src/index.tsto optimize bundle size and clarify intent.