@builder.io/dev-tools 1.19.10 → 1.19.11
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/cli/index.cjs +9 -11
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +3 -3
- package/server/index.mjs +3 -3
- package/types/tsconfig.tsbuildinfo +1 -1
- package/types/types/proxy-middleware.d.ts +0 -4
|
@@ -20,10 +20,6 @@ export interface ProxyMiddleware extends MiddlewareFunction {
|
|
|
20
20
|
* @param head - The first packet of the upgraded stream
|
|
21
21
|
*/
|
|
22
22
|
upgrade: WebSocketUpgradeFunction;
|
|
23
|
-
/**
|
|
24
|
-
* Cleanup method for graceful shutdown
|
|
25
|
-
*/
|
|
26
|
-
cleanup: () => void;
|
|
27
23
|
/**
|
|
28
24
|
* The target host to proxy to:
|
|
29
25
|
* e.g. "http://localhost:4000"
|