Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions compiler/packages/react-forgive/client/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"private": "true",
"private": true,
"name": "react-forgive-client",
"version": "0.0.0",
"description": "Experimental LSP client",
Expand All @@ -19,4 +19,4 @@
"devDependencies": {
"@types/vscode": "^1.95.0"
}
}
}
4 changes: 2 additions & 2 deletions compiler/packages/react-forgive/server/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"private": "true",
"private": true,
"name": "react-forgive-server",
"version": "0.0.0",
"description": "Experimental LSP server",
Expand All @@ -22,4 +22,4 @@
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
}
}
}
8 changes: 5 additions & 3 deletions packages/react-devtools-fusebox/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"name": "react-devtools-fusebox",
"version": "0.0.0",
"private": "true",
"private": true,
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

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

This PR correctly fixes the "private" field type in react-devtools-fusebox package.json. However, the same issue exists in two other package.json files:

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

Both files use "private": "true" (string) instead of "private": true (boolean). Consider fixing these as well to ensure consistency across the codebase and full compliance with the npm specification.

Copilot uses AI. Check for mistakes.
"license": "MIT",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build:frontend:copy-types": "cp src/*.d.ts dist/",
"build:frontend:local": "cross-env NODE_ENV=development webpack --config webpack.config.frontend.js && yarn build:frontend:copy-types",
Expand All @@ -20,4 +22,4 @@
"webpack-cli": "^5.1.1",
"workerize-loader": "^2.0.2"
}
}
}