@vercel/build-utils 12.1.2 → 12.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 12.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Revert the prebuilt archive split from 20MB back to 100MB ([#14103](https://github.com/vercel/vercel/pull/14103))
8
+
3
9
  ## 12.1.2
4
10
 
5
11
  ### Patch Changes
@@ -56,7 +56,7 @@ function streamToBuffer(stream) {
56
56
  });
57
57
  }
58
58
  const MB = 1024 * 1024;
59
- async function streamToBufferChunks(stream, chunkSize = 20 * MB) {
59
+ async function streamToBufferChunks(stream, chunkSize = 100 * MB) {
60
60
  const chunks = [];
61
61
  let currentChunk = [];
62
62
  let currentSize = 0;
package/dist/index.js CHANGED
@@ -22255,7 +22255,7 @@ function streamToBuffer(stream) {
22255
22255
  });
22256
22256
  }
22257
22257
  var MB = 1024 * 1024;
22258
- async function streamToBufferChunks(stream, chunkSize = 20 * MB) {
22258
+ async function streamToBufferChunks(stream, chunkSize = 100 * MB) {
22259
22259
  const chunks = [];
22260
22260
  let currentChunk = [];
22261
22261
  let currentSize = 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "12.1.2",
3
+ "version": "12.1.3",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",