v0.0.2#7
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR prepares the v-k-b root package and the src/react subpackage for the v0.0.2 release by bumping versions/dependencies, updating the shipped React dist output, and adding a minimal Vitest suite intended to verify that the published dist/ entrypoints remain importable.
Changes:
- Bump
v-k-bandvkb-reactversions to0.0.2and update related devDependencies/lockfiles. - Add root-level Vitest config + an import-focused test to validate
dist/entrypoint exports. - Update the shipped
dist/react/index.jsto match the current source behavior for shift/caps double-press timing.
Reviewed changes
Copilot reviewed 4 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
vitest.config.ts |
Adds a dedicated Vitest configuration targeting the new dist import test. |
tsconfig.json |
Adjusts rootDir to include non-src/ TypeScript files (e.g., tests/config). |
src/react/package.json |
Bumps vkb-react version and updates devDependencies. |
src/react/package-lock.json |
Lockfile updates reflecting the React subpackage dependency bumps. |
package.json |
Bumps root package version and Vitest devDependency. |
package-lock.json |
Lockfile update reflecting the root devDependency bump(s). |
dist/react/index.js |
Updates shipped React dist logic for shift/caps double-press tracking. |
__tests__/importTests.test.ts |
Adds import/export assertions for root and React dist entrypoints. |
Files not reviewed (1)
- src/react/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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 bumps the
devDependenciesin the React component and the rootv-k-bpackage. It adds tests for making sure the existing distributed files are working as expected. The React component's distributed files are updated. Thev-k-bpackage is bumped to v0.0.2, which will be published by a tag release after this is merged.