From 88238a58b3942992b1bee711b949fd98ae342c67 Mon Sep 17 00:00:00 2001 From: MorikawaSouma Date: Thu, 19 Mar 2026 22:04:12 +0800 Subject: [PATCH] fix(react-devtools-fusebox): correct 'private' field type in package.json The 'private' field should be a boolean value (true), not a string ("true"). This fixes a malformed package.json that could cause issues with npm/yarn. Fixes #35793 --- packages/react-devtools-fusebox/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-devtools-fusebox/package.json b/packages/react-devtools-fusebox/package.json index bf5456d4cdac..644f42f04cdd 100644 --- a/packages/react-devtools-fusebox/package.json +++ b/packages/react-devtools-fusebox/package.json @@ -1,7 +1,7 @@ { "name": "react-devtools-fusebox", "version": "0.0.0", - "private": "true", + "private": true, "license": "MIT", "files": ["dist"], "scripts": {