Socket
Socket
Sign inDemoInstall

@vercel/build-utils

Package Overview
Dependencies
Maintainers
3
Versions
308
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 5.5.3 to 5.5.4

3

dist/file-fs-ref.js

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

const async_sema_1 = __importDefault(require("async-sema"));
const semaToPreventEMFILE = new async_sema_1.default(20);
const DEFAULT_SEMA = 20;
const semaToPreventEMFILE = new async_sema_1.default(parseInt(process.env.VERCEL_INTERNAL_FILE_FS_REF_SEMA || String(DEFAULT_SEMA), 10) || DEFAULT_SEMA);
class FileFsRef {

@@ -14,0 +15,0 @@ constructor({ mode = 0o100644, contentType, fsPath }) {

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

const async_sema_1 = __importDefault(require("async-sema"));
const semaToDownloadFromS3 = new async_sema_1.default(5);
const DEFAULT_SEMA = 5;
const semaToDownloadFromS3 = new async_sema_1.default(parseInt(process.env.VERCEL_INTERNAL_FILE_REF_SEMA || String(DEFAULT_SEMA), 10) || DEFAULT_SEMA);
class BailableError extends Error {

@@ -14,0 +15,0 @@ constructor(...args) {

{
"name": "@vercel/build-utils",
"version": "5.5.3",
"version": "5.5.4",
"license": "MIT",

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

},
"gitHead": "8814fc15159c78432375d7bb6a99c2e42125de5d"
"gitHead": "45bd855250436b73bee892c53f0407e1f24bc689"
}

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