Skip to content

fix(react-devtools-fusebox): change private field from string to boolean#36339

Open
Jah-yee wants to merge 1 commit intofacebook:mainfrom
Jah-yee:pr/fix-private-field-35793
Open

fix(react-devtools-fusebox): change private field from string to boolean#36339
Jah-yee wants to merge 1 commit intofacebook:mainfrom
Jah-yee:pr/fix-private-field-35793

Conversation

@Jah-yee
Copy link
Copy Markdown

@Jah-yee Jah-yee commented Apr 24, 2026

Summary

Fixes an invalid private field in packages/react-devtools-fusebox/package.json. Per the npm package.json specification, the private field must be a boolean, not the string "true" currently present.

Fix

-  "private": "true",
+  "private": true,

Testing

No behavioral code changes. This is a data-format correction that resolves validation errors in package scanning tools that enforce the npm specification.

Related

Fixes #35793


Note: this fix was previously merged to the fork main branch (Jah-yee#1) but the PR was closed without being pushed upstream. Resubmitting to facebook/react.

The `private` field in package.json should be a boolean per npm specification,
not the string `"true"` per package.json spec.

Fixes facebook#35793
@meta-cla meta-cla Bot added the CLA Signed label Apr 24, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Bug: Malformed private field in react-devtools-fusebox package.json

1 participant