@vercel/build-utils 13.32.0 → 13.32.1

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.32.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8dc4702: Fix `vercel dev` for standalone Node servers, including projects without a `package.json`, and reuse the server process between requests.
8
+
3
9
  ## 13.32.0
4
10
 
5
11
  ### Minor Changes
package/dist/types.d.ts CHANGED
@@ -229,6 +229,11 @@ export interface StartDevServerSuccess {
229
229
  * dev server will forcefully be killed.
230
230
  */
231
231
  shutdown?: () => Promise<void>;
232
+ /**
233
+ * Whether the builder owns this dev server's lifecycle across requests.
234
+ * Persistent servers are still shut down when `vercel dev` exits.
235
+ */
236
+ persistent?: boolean;
232
237
  /**
233
238
  * Cron entries produced by the builder for this service.
234
239
  * Used by the dev orchestrator to schedule cron triggers.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "13.32.0",
3
+ "version": "13.32.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",