@vercel/build-utils 13.29.0 → 13.29.1
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 +6 -0
- package/dist/index.js +1 -1
- package/dist/max-duration.d.ts +1 -1
- package/dist/max-duration.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -38260,7 +38260,7 @@ function hasProp2(obj, key) {
|
|
|
38260
38260
|
}
|
|
38261
38261
|
|
|
38262
38262
|
// src/max-duration.ts
|
|
38263
|
-
var DEFAULT_MAX_DURATION_LIMIT =
|
|
38263
|
+
var DEFAULT_MAX_DURATION_LIMIT = 1800;
|
|
38264
38264
|
var SKIP_MAX_DURATION_LIMIT_ENV = "VERCEL_CLI_SKIP_MAX_DURATION_LIMIT";
|
|
38265
38265
|
function getMaxDurationLimit() {
|
|
38266
38266
|
if (process.env[SKIP_MAX_DURATION_LIMIT_ENV] === "1") {
|
package/dist/max-duration.d.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* this client-side bound is intentionally coarse — it exists only to give fast
|
|
9
9
|
* local feedback on obviously-invalid values.
|
|
10
10
|
*/
|
|
11
|
-
export declare const DEFAULT_MAX_DURATION_LIMIT =
|
|
11
|
+
export declare const DEFAULT_MAX_DURATION_LIMIT = 1800;
|
|
12
12
|
/**
|
|
13
13
|
* Internal env var used to skip the client-side `maxDuration` upper-bound check.
|
|
14
14
|
* When set to `'1'`, the client-side maximum ({@link DEFAULT_MAX_DURATION_LIMIT})
|
package/dist/max-duration.js
CHANGED
|
@@ -24,7 +24,7 @@ __export(max_duration_exports, {
|
|
|
24
24
|
getMaxDurationSchema: () => getMaxDurationSchema
|
|
25
25
|
});
|
|
26
26
|
module.exports = __toCommonJS(max_duration_exports);
|
|
27
|
-
const DEFAULT_MAX_DURATION_LIMIT =
|
|
27
|
+
const DEFAULT_MAX_DURATION_LIMIT = 1800;
|
|
28
28
|
const SKIP_MAX_DURATION_LIMIT_ENV = "VERCEL_CLI_SKIP_MAX_DURATION_LIMIT";
|
|
29
29
|
function getMaxDurationLimit() {
|
|
30
30
|
if (process.env[SKIP_MAX_DURATION_LIMIT_ENV] === "1") {
|