builder.io 1.11.5 → 1.11.7
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 +228 -229
- 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/codegen.d.ts +1 -1
- package/types/cli/sync-utils.d.ts +1 -1
- package/types/tsconfig.tsbuildinfo +1 -1
package/types/cli/codegen.d.ts
CHANGED
|
@@ -132,7 +132,7 @@ export declare class CodeGenSession {
|
|
|
132
132
|
setDebug(debug: boolean): void;
|
|
133
133
|
getAllFiles(options?: {
|
|
134
134
|
getDotFiles?: boolean;
|
|
135
|
-
globbyPattern?: string
|
|
135
|
+
globbyPattern?: string;
|
|
136
136
|
includePattern?: string;
|
|
137
137
|
}): Promise<string[]>;
|
|
138
138
|
getSessionId(): string;
|
|
@@ -4,7 +4,7 @@ export declare function extractSignatureInfo(content: string): {
|
|
|
4
4
|
sessionKey?: string;
|
|
5
5
|
snippetId?: string;
|
|
6
6
|
};
|
|
7
|
-
export declare function getAllProjectFiles(basePath: string,
|
|
7
|
+
export declare function getAllProjectFiles(basePath: string, globPattern?: string, extraIgnorePatterns?: string[], getDotFiles?: boolean): Promise<string[]>;
|
|
8
8
|
export declare function findBuilderFiles(basePath: string, targetContentId: string, targetSessionKey: string): Promise<FileNode[]>;
|
|
9
9
|
export declare function filterNonImportantFiles(files: string[]): string[];
|
|
10
10
|
export declare function getIgnorePatterns(basePath: string): (path: string) => boolean;
|