Skip to content

Commit d7d06b1

Browse files
authored
[Typescript] Increased size limits for some deps (#3728)
# Description of Changes <!-- Please describe your change, mention any related tickets, and so on here. --> We got some errors when publishing the typescript release related to the size limits of these deps. This PR just increases those limits. ``` cjs (brotli) Package size limit has exceeded by 348 B Size limit: 25 kB Size: 25.35 kB brotlied esm (brotli) Package size limit has exceeded by 5.19 kB Size limit: 20 kB Size: 25.19 kB brotlied esm (gzip) Package size limit has exceeded by 4.63 kB Size limit: 25 kB Size: 29.63 kB gzipped esm (uncompressed) Package size limit has exceeded by 8.45 kB Size limit: 150 kB Size: 158.45 kB esm min (brotli) Package size limit has exceeded by 1.65 kB Size limit: 12 kB Size: 13.65 kB brotlied esm min (gzip) Package size limit has exceeded by 490 B Size limit: 15 kB Size: 15.49 kB gzipped esm min (uncompressed) Package size limit has exceeded by 3.51 kB Size limit: 60 kB Size: 63.51 kB react esm min (brotli) Size limit: 10 kB Size: 4.13 kB brotlied react esm min (uncompressed) Size limit: 10 kB Size: 4.13 kB brotlied react esm min (gzip) Size limit: 15 kB Size: 4.64 kB gzipped sdk esm min (brotli) Package size limit has exceeded by 3.41 kB Size limit: 10 kB Size: 13.41 kB brotlied sdk esm min (gzip) Package size limit has exceeded by 251 B Size limit: 15 kB Size: 15.25 kB gzipped sdk esm min (uncompressed) Package size limit has exceeded by 3.41 kB Size limit: 10 kB Size: 13.41 kB brotlied Try to reduce size or increase limit in "size-limit" section of package.json  ELIFECYCLE  Command failed with exit code 1.  ELIFECYCLE  Command failed with exit code 1. Error: Failed to publish package to npm Error: Process completed with exit code 1. ``` # API and ABI breaking changes None <!-- If this is an API or ABI breaking change, please apply the corresponding GitHub label. --> # Expected complexity level and risk 1 - This just fixes the release. <!-- How complicated do you think these changes are? Grade on a scale from 1 to 5, where 1 is a trivial change, and 5 is a deep-reaching and complex change. This complexity rating applies not only to the complexity apparent in the diff, but also to its interactions with existing and future code. If you answered more than a 2, explain what is complex about the PR, and what other components it interacts with in potentially concerning ways. --> # Testing - I have not tested this because I want review before trying it on the release. <!-- Describe any testing you've done, and any testing you'd like your reviewers to do, so that you're confident that all the changes work as expected! -->
1 parent 174f528 commit d7d06b1

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

crates/bindings-typescript/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,43 +82,43 @@
8282
"name": "cjs (brotli)",
8383
"path": "dist/index.cjs",
8484
"brotli": true,
85-
"limit": "25 kB"
85+
"limit": "26 kB"
8686
},
8787
{
8888
"name": "esm (brotli)",
8989
"path": "dist/index.mjs",
9090
"brotli": true,
91-
"limit": "20 kB"
91+
"limit": "26 kB"
9292
},
9393
{
9494
"name": "esm (gzip)",
9595
"path": "dist/index.mjs",
9696
"gzip": true,
97-
"limit": "25 kB"
97+
"limit": "30 kB"
9898
},
9999
{
100100
"name": "esm (uncompressed)",
101101
"path": "dist/index.mjs",
102102
"brotli": false,
103-
"limit": "150 kB"
103+
"limit": "160 kB"
104104
},
105105
{
106106
"name": "esm min (brotli)",
107107
"path": "dist/min/index.browser.mjs",
108108
"brotli": true,
109-
"limit": "12 kB"
109+
"limit": "14 kB"
110110
},
111111
{
112112
"name": "esm min (gzip)",
113113
"path": "dist/min/index.browser.mjs",
114114
"gzip": true,
115-
"limit": "15 kB"
115+
"limit": "16 kB"
116116
},
117117
{
118118
"name": "esm min (uncompressed)",
119119
"path": "dist/min/index.browser.mjs",
120120
"brotli": false,
121-
"limit": "60 kB"
121+
"limit": "65 kB"
122122
},
123123
{
124124
"name": "react esm min (brotli)",
@@ -141,18 +141,18 @@
141141
"name": "sdk esm min (brotli)",
142142
"path": "dist/min/sdk/index.browser.mjs",
143143
"brotli": true,
144-
"limit": "10 kB"
144+
"limit": "14 kB"
145145
},
146146
{
147147
"name": "sdk esm min (gzip)",
148148
"path": "dist/min/sdk/index.browser.mjs",
149149
"gzip": true,
150-
"limit": "15 kB"
150+
"limit": "16 kB"
151151
},
152152
{
153153
"name": "sdk esm min (uncompressed)",
154154
"path": "dist/min/sdk/index.browser.mjs",
155-
"limit": "10 kB"
155+
"limit": "14 kB"
156156
}
157157
],
158158
"dependencies": {

0 commit comments

Comments
 (0)