@vercel/build-utils 13.32.3 → 13.33.0

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 13.33.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 607f0ef: Add service information to deploy-manifest.
8
+
3
9
  ## 13.32.3
4
10
 
5
11
  ### Patch Changes
@@ -1,9 +1,15 @@
1
1
  import type { PackageManifest } from './package-manifest';
2
- export interface DeployManifestBuild extends PackageManifest {
2
+ import type { ServiceBinding } from './types';
3
+ export interface DeployManifestBuild extends Omit<PackageManifest, 'version'> {
3
4
  root: string;
4
5
  builder: string;
5
6
  }
7
+ export interface DeployManifestService {
8
+ builds: string[];
9
+ bindings?: ServiceBinding[];
10
+ }
6
11
  export interface DeployManifest {
7
12
  manifestVersion: '2.0';
8
13
  builds: Record<string, DeployManifestBuild>;
14
+ services?: Record<string, DeployManifestService>;
9
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "13.32.3",
3
+ "version": "13.33.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",