Skip to content

fix: set private field to boolean in devtools fusebox package#35796

Open
Arktomson wants to merge 1 commit intofacebook:mainfrom
Arktomson:codex/issue-35793-private-boolean
Open

fix: set private field to boolean in devtools fusebox package#35796
Arktomson wants to merge 1 commit intofacebook:mainfrom
Arktomson:codex/issue-35793-private-boolean

Conversation

@Arktomson
Copy link

Summary

This change updates packages/react-devtools-fusebox/package.json to use a boolean for the private field instead of a string.

  • Changed "private": "true" to "private": true.
  • This aligns the package metadata with standard package.json schema expectations.
  • Scope is intentionally minimal and does not change runtime behavior.

How did you test this change?

I validated the package metadata value and type after the change.

node -e "const p=require('./packages/react-devtools-fusebox/package.json'); if (typeof p.private !== 'boolean') { throw new Error('private is not boolean'); } console.log('private is boolean:', p.private);"

Output:

private is boolean: true

Additionally, this is a metadata-only change in package.json, so no runtime code path is affected.


@meta-cla meta-cla bot added the CLA Signed label Feb 16, 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.

1 participant