@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 +6 -0
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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.
|