Skip to content

Commit 7ace6b4

Browse files
author
Erik Rasmussen
committed
Fix: Remove unminified UMD and tighten size-limit thresholds
- Remove dist/react-final-form-arrays.umd.js (unminified) - Tighten limits: 2kB for minified, 3kB for es/cjs Per CodeRabbit review feedback.
1 parent a73da0c commit 7ace6b4

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,19 +113,15 @@
113113
"size-limit": [
114114
{
115115
"path": "dist/react-final-form-arrays.umd.min.js",
116-
"limit": "4kB"
117-
},
118-
{
119-
"path": "dist/react-final-form-arrays.umd.js",
120-
"limit": "4kB"
116+
"limit": "2kB"
121117
},
122118
{
123119
"path": "dist/react-final-form-arrays.es.js",
124-
"limit": "4kB"
120+
"limit": "3kB"
125121
},
126122
{
127123
"path": "dist/react-final-form-arrays.cjs.js",
128-
"limit": "4kB"
124+
"limit": "3kB"
129125
}
130126
]
131127
}

0 commit comments

Comments
 (0)