diff --git a/compiler/packages/babel-plugin-react-compiler/package.json b/compiler/packages/babel-plugin-react-compiler/package.json index c0eb70eae2..4996233e1c 100644 --- a/compiler/packages/babel-plugin-react-compiler/package.json +++ b/compiler/packages/babel-plugin-react-compiler/package.json @@ -5,7 +5,7 @@ "main": "dist/index.js", "license": "MIT", "files": [ - "src" + "dist" ], "scripts": { "build": "rimraf dist && rollup --config --bundleConfigAsCjs", diff --git a/compiler/packages/eslint-plugin-react-compiler/package.json b/compiler/packages/eslint-plugin-react-compiler/package.json index ccd5c97a87..ce74bf46d7 100644 --- a/compiler/packages/eslint-plugin-react-compiler/package.json +++ b/compiler/packages/eslint-plugin-react-compiler/package.json @@ -6,6 +6,9 @@ "build": "rimraf dist && rollup --config --bundleConfigAsCjs", "test": "tsc && jest" }, + "files": [ + "dist" + ], "dependencies": { "@babel/core": "^7.24.4", "@babel/parser": "^7.24.4", diff --git a/compiler/packages/react-compiler-runtime/package.json b/compiler/packages/react-compiler-runtime/package.json index 5098d8c5c4..08f7473a5f 100644 --- a/compiler/packages/react-compiler-runtime/package.json +++ b/compiler/packages/react-compiler-runtime/package.json @@ -5,10 +5,11 @@ "license": "MIT", "main": "dist/index.js", "files": [ + "dist", "src" ], "peerDependencies": { - "react": "^18.2.0 | ^19.0.0" + "react": "^18.2.0 || ^19.0.0" }, "scripts": { "build": "rimraf dist && rollup --config --bundleConfigAsCjs",