@builder.io/dev-tools 1.18.40 → 1.18.41

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.
@@ -143,4 +143,15 @@ export interface CLIArgs {
143
143
  * Example: --acceptSelfSignedCertificates
144
144
  */
145
145
  acceptSelfSigned?: boolean;
146
+ /**
147
+ * Create a fusion example project after design system indexing completes.
148
+ * The project will be created with the design system pre-attached and a background
149
+ * agent will be spawned to install the design system using installation.md.
150
+ */
151
+ createFusionExample?: boolean;
152
+ /**
153
+ * Test creating a fusion example project without running indexing.
154
+ * Requires designSystemName to be provided or will prompt for it.
155
+ */
156
+ testFusionExample?: boolean;
146
157
  }
@@ -5,6 +5,7 @@ export interface GifGeneratorOptions {
5
5
  outputPath?: string;
6
6
  cleanup?: boolean;
7
7
  sys?: DevToolsSys;
8
+ maxWidth?: number;
8
9
  }
9
10
  export declare class GifGenerator {
10
11
  #private;