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
4
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
12.2.1
to
12.2.2
+6
-0
CHANGELOG.md
# @vercel/build-utils
## 12.2.2
### Patch Changes
- Allow Node.js 24 behind env var feature flag ([#14160](https://github.com/vercel/vercel/pull/14160))
## 12.2.1

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

+11
-1

@@ -103,5 +103,15 @@ "use strict";

function getNodeVersionByMajor(major) {
return NODE_VERSIONS.find((v) => v.major === major);
return getOptions().find((v) => v.major === major);
}
function getOptions() {
if (process.env.VERCEL_ALLOW_NODEJS_24 === "1") {
return [
new import_types.NodeVersion({
major: 24,
range: "24.x",
runtime: "nodejs24.x"
}),
...NODE_VERSIONS
];
}
return NODE_VERSIONS;

@@ -108,0 +118,0 @@ }

+1
-1
{
"name": "@vercel/build-utils",
"version": "12.2.1",
"version": "12.2.2",
"license": "Apache-2.0",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

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