You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@vercel/build-utils

Package Overview
Dependencies
Maintainers
2
Versions
401
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vercel/build-utils - npm Package Compare versions

Comparing version
13.6.1
to
13.6.2
+6
-0
CHANGELOG.md
# @vercel/build-utils
## 13.6.2
### Patch Changes
- add partialFallback flag to prerender output ([#14703](https://github.com/vercel/vercel/pull/14703))
## 13.6.1

@@ -4,0 +10,0 @@

+3
-1

@@ -20,2 +20,3 @@ import type { File, HasField, Chain } from './types';

exposeErrBody?: boolean;
partialFallback?: boolean;
}

@@ -49,4 +50,5 @@ export declare class Prerender {

exposeErrBody?: boolean;
constructor({ expiration, staleExpiration, lambda, fallback, group, bypassToken, allowQuery, allowHeader, initialHeaders, initialStatus, passQuery, sourcePath, experimentalBypassFor, experimentalStreamingLambdaPath, chain, exposeErrBody, }: PrerenderOptions);
partialFallback?: boolean;
constructor({ expiration, staleExpiration, lambda, fallback, group, bypassToken, allowQuery, allowHeader, initialHeaders, initialStatus, passQuery, sourcePath, experimentalBypassFor, experimentalStreamingLambdaPath, chain, exposeErrBody, partialFallback, }: PrerenderOptions);
}
export {};

@@ -41,3 +41,4 @@ "use strict";

chain,
exposeErrBody
exposeErrBody,
partialFallback
}) {

@@ -174,2 +175,9 @@ this.type = "Prerender";

}
if (partialFallback === true) {
this.partialFallback = true;
} else if (typeof partialFallback !== "boolean" && typeof partialFallback !== "undefined") {
throw new Error(
`The \`partialFallback\` argument for \`Prerender\` must be a boolean.`
);
}
}

@@ -176,0 +184,0 @@ }

{
"name": "@vercel/build-utils",
"version": "13.6.1",
"version": "13.6.2",
"license": "Apache-2.0",

@@ -54,3 +54,3 @@ "main": "./dist/index.js",

"@vercel/error-utils": "2.0.3",
"@vercel/routing-utils": "6.0.0"
"@vercel/routing-utils": "6.0.1"
},

@@ -57,0 +57,0 @@ "scripts": {

Sorry, the diff of this file is too big to display