-
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP] Experimental React Compiler support.
- Loading branch information
Showing
6 changed files
with
169 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare module 'babel-plugin-react-compiler'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,9 +65,11 @@ | |
"babel-plugin-fbt": "^1.0.0", | ||
"babel-plugin-fbt-import": "^0.1.0", | ||
"babel-plugin-fbt-runtime": "^1.0.0", | ||
"babel-plugin-react-compiler": "0.0.0-experimental-4690415-20240515", | ||
"chalk": "^5.3.0", | ||
"dotenv": "^16.4.5", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-react-compiler": "0.0.0-experimental-e04a001-20240515", | ||
"nodemon": "^3.1.0", | ||
"npm-run-all2": "^6.1.2", | ||
"prettier": "4.0.0-alpha.8", | ||
|
@@ -109,6 +111,7 @@ | |
"patchedDependencies": { | ||
"@remix-run/[email protected]": "patches/@[email protected]", | ||
"[email protected]": "patches/[email protected]", | ||
"[email protected]": "patches/eslint-plugin-react-compiler@0.0.0-experimental-e04a001-20240515.patch", | ||
"[email protected]": "patches/[email protected]", | ||
"[email protected]": "patches/[email protected]", | ||
"[email protected]": "patches/[email protected]", | ||
|
12 changes: 12 additions & 0 deletions
12
patches/eslint-plugin-react-compiler@0.0.0-experimental-e04a001-20240515.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/package.json b/package.json | ||
index dfc570d017042b9066863054d40200c28c5e8947..219b6071176714448fc018063643a301e0d59a7c 100644 | ||
--- a/package.json | ||
+++ b/package.json | ||
@@ -2,6 +2,7 @@ | ||
"name": "eslint-plugin-react-compiler", | ||
"version": "0.0.0-experimental-e04a001-20240515", | ||
"description": "ESLint plugin to display errors found by the React compiler.", | ||
+ "main": "dist/index.js", | ||
"scripts": { | ||
"build": "rimraf dist && rollup --config --bundleConfigAsCjs", | ||
"test": "tsc && jest" |
Oops, something went wrong.