chore: uniform dependencies across workspace#1713
Merged
Merged
Conversation
Align shared dev tooling versions, package export metadata, and TS config across apps and packages; refresh lockfile.
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
This change aligns dependency versions and build metadata across the monorepo so packages and the demo app resolve the same toolchain, and refreshes
pnpm-lock.yamlaccordingly.Dependency alignment
vite7.3.1,@vitejs/plugin-react5.1.4 across library packages, config, and demo.@types/node25.3.1 everywhere it is used.@commitlint/cliand@commitlint/config-conventional19.7.1,turbo2.4.4 (aligned with the version exercised after install).Package metadata and TypeScript
exports: add explicit"types"entries pointing at./dist/src/index.d.tsfor config, form, i18n, layout, ui, and user so consumers resolve declarations consistently with ESM/CJS entries.tsconfig.json: set"moduleResolution": "bundler"in package tsconfigs that were updated (config, form, i18n, layout, ui, user) for consistent resolution with the Vite-based setup.Demo app
@prefabs.tech/tsconfigfrom dependencies to devDependencies (build-time only).Scripts / CI ergonomics
test:unit: append--passWithNoTestswhere unit suites may be empty (form, i18n, layout, user) soturbo run testdoes not fail on emptyunit/folders.Verification
Pre-commit hooks ran
lint,typecheck, andtestsuccessfully on this branch.