Socket
Socket
Sign inDemoInstall

@vercel/build-utils

Package Overview
Dependencies
Maintainers
8
Versions
317
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 6.1.0 to 6.2.0

2

dist/lambda.d.ts

@@ -69,3 +69,3 @@ /// <reference types="node" />

export declare function createZip(files: Files): Promise<Buffer>;
export declare function getLambdaOptionsFromFunction({ sourceFile, config, }: GetLambdaOptionsFromFunctionOptions): Promise<Pick<LambdaOptions, 'memory' | 'maxDuration'>>;
export declare function getLambdaOptionsFromFunction({ sourceFile, config, }: GetLambdaOptionsFromFunctionOptions): Promise<Pick<LambdaOptions, 'memory' | 'maxDuration' | 'cron'>>;
export {};

@@ -136,2 +136,3 @@ "use strict";

maxDuration: fn.maxDuration,
cron: fn.cron,
};

@@ -138,0 +139,0 @@ }

@@ -31,2 +31,7 @@ export declare const functionsSchema: {

};
cron: {
type: string;
minLength: number;
maxLength: number;
};
};

@@ -33,0 +38,0 @@ };

@@ -37,2 +37,7 @@ "use strict";

},
cron: {
type: 'string',
minLength: 9,
maxLength: 256,
},
},

@@ -39,0 +44,0 @@ },

@@ -285,2 +285,3 @@ /// <reference types="node" />

excludeFiles?: string;
cron?: Cron;
};

@@ -287,0 +288,0 @@ }

{
"name": "@vercel/build-utils",
"version": "6.1.0",
"version": "6.2.0",
"license": "MIT",

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

},
"gitHead": "a4d16c681a7e85f64a2d78432d499c599b398bde"
"gitHead": "a585969dd3b77a4ed36d6a2ca11b34f9050489f1"
}

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc