feat: update all dependencies to latest versions - #54
Merged
Merged
Conversation
Bumps runtime and dev dependencies across the board, including several major version upgrades (ink 6 -> 7, toml 3 -> 4, gunshi 0.26 -> 0.29, oxfmt 0.34 -> 0.46, react-devtools-core 6 -> 7, typescript 5 -> 6). Also fixes scripts/build.ts to use the renamed Bun.Build.CompileTarget type from the updated @types/bun.
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
Bumps every dependency in
package.jsonto its latest version, including several major-version upgrades:ink6 β 7,toml3 β 4,gunshi0.26 β 0.29,oxfmt0.34 β 0.46,react-devtools-core6 β 7, andtypescript5 β 6.Commentary
@types/bun1.3.x renamedBun.Build.TargettoBun.Build.CompileTarget;scripts/build.tswas updated to match.ink7 requires Node 22+ and React 19.2+. Curse ships as an embedded Bun binary so the Node requirement is not user-facing, and React was bumped to 19.2.5 in the same change.ink7's input-handling changes (key.backspacevskey.delete,key.metaon Escape) were reviewed; existing code already handleskey.backspace || key.deleteand does not rely onkey.metafor plain Escape, so no call-site changes were needed.bun run tsc --noEmit,bun --bun run oxlint, a TOML parse smoke test againstexamples/basic/curse.toml, andbun run src/index.ts --help.