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 packages/react-devtools-fusebox/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-devtools-fusebox",
"version": "0.0.0",
"private": "true",
"private": true,
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Same issue exists in two other packages

The fix here is correct. However, the same string-instead-of-boolean mistake exists in two other package.json files in the repository that were not covered by this PR:

  • compiler/packages/react-forgive/client/package.json (line 2): "private": "true"
  • compiler/packages/react-forgive/server/package.json (line 2): "private": "true"

It would be worth extending this fix to cover those files as well for consistency.

Prompt To Fix With AI
This is a comment left during a code review.
Path: packages/react-devtools-fusebox/package.json
Line: 4

Comment:
**Same issue exists in two other packages**

The fix here is correct. However, the same string-instead-of-boolean mistake exists in two other `package.json` files in the repository that were not covered by this PR:

- `compiler/packages/react-forgive/client/package.json` (line 2): `"private": "true"`
- `compiler/packages/react-forgive/server/package.json` (line 2): `"private": "true"`

It would be worth extending this fix to cover those files as well for consistency.

How can I resolve this? If you propose a fix, please make it concise.

Fix in Claude Code Fix in Codex

"license": "MIT",
"files": ["dist"],
"scripts": {
Expand Down
Loading