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.2.17
to
13.3.0
+10
-0
CHANGELOG.md
# @vercel/build-utils
## 13.3.0
### Minor Changes
- Add multi-service support for `vercel dev`. When `VERCEL_USE_EXPERIMENTAL_SERVICES=1` is set, the CLI auto-detects different multi-service layouts and orchestrates dev servers for each service through a single proxy server. ([#14805](https://github.com/vercel/vercel/pull/14805))
### Patch Changes
- [services] add `services` to `config.json` ([#14847](https://github.com/vercel/vercel/pull/14847))
## 13.2.17

@@ -4,0 +14,0 @@

/// <reference types="node" />
/// <reference types="node" />
import type FileRef from './file-ref';

@@ -176,2 +177,14 @@ import type FileFsRef from './file-fs-ref';

publicDir?: string;
/**
* Optional callback for stdout output from the dev server process.
* If provided, the builder should forward stdout to this callback
* instead of (or in addition to) the default behavior.
*/
onStdout?: (data: Buffer) => void;
/**
* Optional callback for stderr output from the dev server process.
* If provided, the builder should forward stderr to this callback
* instead of (or in addition to) the default behavior.
*/
onStderr?: (data: Buffer) => void;
};

@@ -449,2 +462,18 @@ export interface StartDevServerSuccess {

}
export interface Service {
name: string;
type: ServiceType;
group?: string;
workspace: string;
entrypoint?: string;
framework?: string;
builder: Builder;
runtime?: string;
buildCommand?: string;
installCommand?: string;
routePrefix?: string;
schedule?: string;
topic?: string;
consumer?: string;
}
/** The framework which created the function */

@@ -451,0 +480,0 @@ export interface FunctionFramework {

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

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