Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React 18 compatibility: Version 4.0.0 #76

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.13.0
18.17.0
8 changes: 5 additions & 3 deletions config/babelrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@
} ]
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-class-properties",
"@babel/plugin-syntax-class-properties",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-transform-object-rest-spread",
"@babel/plugin-transform-optional-chaining",
"@babel/plugin-transform-async-to-generator",
"@babel/plugin-transform-nullish-coalescing-operator",
"@babel/plugin-transform-logical-assignment-operators",
[ "@babel/plugin-transform-runtime", {
"regenerator": true
} ],
Expand Down
13 changes: 3 additions & 10 deletions config/browserslist.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
module.exports = [
'last 2 Chrome versions',
'last 2 Firefox versions',
'last 2 Safari versions',
'last 2 Edge versions',
'last 2 Opera versions',
'last 2 iOS versions',
'last 1 Android version',
'last 1 ChromeAndroid version',
'last 1 FirefoxAndroid version',
'> 1%, not op_mini all, not ie <= 11, not ie_mob <= 11',
">0.2%",
Copy link
Member

Choose a reason for hiding this comment

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

That seems...small

Why drop from 1% to 0.2%?

"not dead",
"not op_mini all"
];
Loading