builder.io 1.11.19 → 1.11.21
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 +361 -359
- 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/cli/index.d.ts +0 -2
- package/types/cli/repo-indexing/component-indexing.d.ts +0 -2
- package/types/cli/repo-indexing/repo-indexing-utils.d.ts +2 -0
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/index.d.ts
CHANGED
|
@@ -48,8 +48,6 @@ export interface CLIArgs {
|
|
|
48
48
|
* Example: --includeDirectories "packages/foo, packages/bar"
|
|
49
49
|
**/
|
|
50
50
|
includeDirectories?: string;
|
|
51
|
-
/** Whether to store repository indexing files */
|
|
52
|
-
storeRepoIndexing?: boolean;
|
|
53
51
|
/** Token to use for figma */
|
|
54
52
|
token?: string;
|
|
55
53
|
/** Url to start from */
|
|
@@ -7,7 +7,6 @@ export declare const processComponent: (sys: DevToolsSys, credentials: Credentia
|
|
|
7
7
|
designSystemPackage?: string;
|
|
8
8
|
designSystemVersion?: string;
|
|
9
9
|
retriesAllowed?: number;
|
|
10
|
-
storeRepoIndexing?: boolean;
|
|
11
10
|
workspaceConfig?: WorkspaceConfiguration;
|
|
12
11
|
debug?: boolean;
|
|
13
12
|
onIssue?: (issue: ComponentIssue) => void;
|
|
@@ -15,7 +14,6 @@ export declare const processComponent: (sys: DevToolsSys, credentials: Credentia
|
|
|
15
14
|
export declare const processAgent: (sys: DevToolsSys, credentials: Credentials, discoveredComponents: Component[], opts?: {
|
|
16
15
|
designSystemId?: string | null;
|
|
17
16
|
retriesAllowed?: number;
|
|
18
|
-
storeRepoIndexing?: boolean;
|
|
19
17
|
debug?: boolean;
|
|
20
18
|
}) => Promise<void>;
|
|
21
19
|
export declare const deprecateObsoleteComponents: (credentials: Credentials, localComponents: Component[], remoteComponents: Component[]) => Promise<void>;
|
|
@@ -2,6 +2,7 @@ import type { DevToolsSys } from "../../core";
|
|
|
2
2
|
import { type Credentials } from "../credentials";
|
|
3
3
|
import type { DesignSystem, GenerateUserMessage, WorkspaceConfiguration, StoreComponentDocsInput, UpdateDesignSystemInput, DesignSystemScope, DisplayDesignSystem } from "$/ai-utils";
|
|
4
4
|
export declare const AGENT_FILE = "AGENTS.md";
|
|
5
|
+
export declare const REPO_INDEXING_FOLDER = "repo-indexing";
|
|
5
6
|
export interface UserSettings {
|
|
6
7
|
isAdminInOrganization: boolean;
|
|
7
8
|
email: string;
|
|
@@ -37,3 +38,4 @@ export declare const addDesignSystem: (credentials: Credentials, body: {
|
|
|
37
38
|
scope: DesignSystemScope;
|
|
38
39
|
}) => Promise<any>;
|
|
39
40
|
export declare const updateDesignSystem: (credentials: Credentials, body: UpdateDesignSystemInput) => Promise<any>;
|
|
41
|
+
export declare const checkRepoIndexingFolder: (sys: DevToolsSys) => Promise<boolean>;
|