@vercel/build-utils 13.25.0 → 13.26.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,15 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 13.26.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 137e5d1: Allow builder V2 to expose startDevServer.
8
+
9
+ ### Patch Changes
10
+
11
+ - bb61428: Include framework slug in output/config.json
12
+
3
13
  ## 13.25.0
4
14
 
5
15
  ### Minor Changes
package/dist/types.d.ts CHANGED
@@ -413,6 +413,7 @@ export interface BuilderV2 {
413
413
  diagnostics?: Diagnostics;
414
414
  prepareCache?: PrepareCache;
415
415
  shouldServe?: ShouldServe;
416
+ startDevServer?: StartDevServer;
416
417
  }
417
418
  export interface BuilderV3 {
418
419
  version: 3;
@@ -574,6 +575,7 @@ export interface BuildResultV2Typical {
574
575
  value: string;
575
576
  }>;
576
577
  framework?: {
578
+ slug: string;
577
579
  version: string;
578
580
  };
579
581
  flags?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "13.25.0",
3
+ "version": "13.26.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",