builder.io 1.17.21 → 1.17.23
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 +333 -333
- 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 +4 -4
- package/server/index.mjs +5 -5
- package/types/cli/codegen.d.ts +2 -0
- package/types/cli/launch/dev-server-orchestrator.d.ts +1 -0
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -94,5 +94,6 @@ export interface DevServerOrchestrator {
|
|
|
94
94
|
close: () => Promise<void>;
|
|
95
95
|
}
|
|
96
96
|
export declare const importPty: (sys: DevToolsSys) => typeof import("@lydell/node-pty") | undefined;
|
|
97
|
+
export declare function safeParseUrl(serverUrl: string | undefined): URL | undefined;
|
|
97
98
|
export declare function devServerOrchestrator(sys: DevToolsSys, fusionConfig: FusionConfig, initialSetupState: "installed" | "not-installed" | "install-failed"): Promise<DevServerOrchestrator>;
|
|
98
99
|
export declare const checkPortsListenedByPid: (pid: number) => number[];
|