Skip to content

Commit

Permalink
fix: support React 19 deps
Browse files Browse the repository at this point in the history
  • Loading branch information
thearnica committed Jan 11, 2025
1 parent 7a8ec2d commit c596b46
Show file tree
Hide file tree
Showing 4 changed files with 298 additions and 3,611 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.5.0
20.11.0
3 changes: 2 additions & 1 deletion .size.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{
"name": "dist/es2015/index.js",
"passed": true,
"size": 819
"size": 1087,
"sizeLimit": 1100
}
]
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"typecheck:flow": "flow check",
"format": "lib-builder format",
"analyze": "ts-react-toolbox analyze",
"size": "npx size-limit",
"size:report": "npx size-limit --json > .size.json",
"size": "size-limit",
"size:report": "size-limit --json > .size.json",
"update": "lib-builder update",
"prepublish-only": "yarn build && yarn changelog",
"prepare": "husky install",
Expand All @@ -45,14 +45,15 @@
"license": "MIT",
"devDependencies": {
"@theuiteam/lib-builder": "^0.3.0",
"@size-limit/preset-small-lib": "^2.1.6",
"@size-limit/preset-small-lib": "^11.1.6",
"size-limit": "^11.0.2",
"@types/react-test-renderer": "^18.0.0",
"react-test-renderer": "^18.2.0"
},
"size-limit": [
{
"path": "dist/es2015/index.js",
"limit": "1 KB"
"limit": "1.1 KB"
}
],
"engines": {
Expand Down
Loading

0 comments on commit c596b46

Please sign in to comment.