builder.io 1.6.102 → 1.6.103

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.
@@ -1,7 +0,0 @@
1
- import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
- import { type InstallOutcome } from "./helpers";
3
- export declare const installJsxPlugin: (sys: DevToolsSys) => Promise<{
4
- timestamp: string;
5
- installOutcome: InstallOutcome;
6
- error: string | undefined;
7
- }>;
@@ -1,38 +0,0 @@
1
- /**
2
- * Initialize logging by wrapping all console methods to write to logs file
3
- */
4
- export declare function initializeLogging(): void;
5
- /**
6
- * Reset console methods to their original state
7
- */
8
- export declare function resetLogging(): void;
9
- /**
10
- * Display intro message with logging
11
- */
12
- export declare const intro: (message: string) => void;
13
- /**
14
- * Wrapped clack logging methods with file logging
15
- */
16
- export declare const log: {
17
- info: (message: string) => void;
18
- success: (message: string) => void;
19
- error: (message: string) => void;
20
- warn: (message: string) => void;
21
- step: (message: string) => void;
22
- message: (message?: string, { symbol }?: import("@clack/prompts").LogMessageOptions) => void;
23
- warning: (message: string) => void;
24
- };
25
- /**
26
- * Display outro message with logging
27
- */
28
- export declare const outro: (message: string) => void;
29
- /**
30
- * Reads logs with pagination
31
- * @param nextToken Line number to start reading from (0-indexed)
32
- * @param limit Number of lines to read
33
- * @returns Object containing logs array and next token
34
- */
35
- export declare const readLogs: (nextToken?: number, limit?: number) => {
36
- logs: string[];
37
- nextToken: number | null;
38
- };
@@ -1,13 +0,0 @@
1
- import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
- import type { CLIArgs } from "./index";
3
- export interface InitArgs extends CLIArgs {
4
- repoFullName?: string;
5
- branchName?: string;
6
- githubToken?: string;
7
- installCommand?: string;
8
- dockerImageType?: "fusion-starter" | "node";
9
- }
10
- export declare function runLaunchInitCommandV2({ args, sys, }: {
11
- sys: DevToolsSys;
12
- args: InitArgs;
13
- }): Promise<number>;
@@ -1,19 +0,0 @@
1
- import type { DevToolsSys } from "@builder.io/dev-tools/core";
2
- import type { CLIArgs } from "./index";
3
- export interface InitArgs extends CLIArgs {
4
- repoFullName?: string;
5
- branchName?: string;
6
- githubToken?: string;
7
- installCommand?: string;
8
- volumePath?: string;
9
- /**
10
- * Indicates the type of docker image the CLI is running on.
11
- *
12
- * @default "node"
13
- */
14
- dockerImageType?: "fusion-starter" | "node";
15
- }
16
- export declare function runLaunchInitCommand({ args, sys, }: {
17
- sys: DevToolsSys;
18
- args: InitArgs;
19
- }): Promise<number>;