@builder.io/dev-tools 1.59.2 → 1.60.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/cli/index.cjs +85 -84
- 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 +39 -38
- package/server/index.mjs +39 -38
- package/types/cli/index.d.ts +2 -0
- package/types/cli/launch.d.ts +3 -0
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/index.d.ts
CHANGED
|
@@ -108,6 +108,8 @@ export interface CLIArgs {
|
|
|
108
108
|
/** Comma-separated list of component names to reindex */
|
|
109
109
|
components?: string;
|
|
110
110
|
nativeApp?: boolean;
|
|
111
|
+
runInPty?: boolean;
|
|
112
|
+
"run-in-pty"?: boolean;
|
|
111
113
|
/** Install command to run for connect-repo (e.g., npm install) */
|
|
112
114
|
installCommand?: string;
|
|
113
115
|
/** Use development server instead of production for launch command */
|
package/types/cli/launch.d.ts
CHANGED
|
@@ -21,6 +21,9 @@ export interface LaunchArgs extends CLIArgs {
|
|
|
21
21
|
c?: string;
|
|
22
22
|
/** Dev server URL to proxy to (alternative to command + port) */
|
|
23
23
|
serverUrl?: string;
|
|
24
|
+
/** Run dev command in a pseudo-terminal. */
|
|
25
|
+
runInPty?: boolean;
|
|
26
|
+
"run-in-pty"?: boolean;
|
|
24
27
|
/**
|
|
25
28
|
* If true, CLI will run the init command instead of the launch command.
|
|
26
29
|
*
|