Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"devDependencies": {
"@types/bun": "latest",
"bun-types": "latest",
"typescript": "^5.7.3"
"typescript": "^6.0.3"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify package manifest vs lockfile TypeScript versions.
# Expected after refresh:
# - package.json shows ^6.0.3
# - bun.lock workspace devDependency reflects ^6.0.3
# - bun.lock resolved package is typescript@6.x

rg -n '"typescript"\s*:\s*"\^?[0-9]+\.[0-9]+\.[0-9]+"' package.json bun.lock
rg -n '"typescript": \["typescript@[0-9]+\.[0-9]+\.[0-9]+' bun.lock

Repository: four-bytes/four-opencode-git-tools

Length of output: 372


Lockfile out of sync — TypeScript 6.0.3 bump won't take effect until bun.lock is regenerated.

On line 27, package.json specifies "typescript": "^6.0.3", but bun.lock still declares "typescript": "^5.7.3" as a workspace devDependency and resolves to typescript@5.9.3. Package managers use the lockfile as the source of truth, so installs will continue using TypeScript 5.9.3 until the lockfile is refreshed. Regenerate bun.lock to complete this upgrade.

Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@package.json` at line 27, The package.json file has been updated to specify
TypeScript version 6.0.3 on line 27, but the bun.lock lockfile has not been
regenerated and still contains the old TypeScript version constraint and
resolution (5.7.3/5.9.3). Regenerate the bun.lock file by running the
appropriate bun command (typically `bun install` or `bun update`) to update the
lockfile and ensure that the new TypeScript 6.0.3 specification in package.json
is properly resolved and locked in the lockfile.

}
}
Loading