yeoman-generator 8.2.0 → 8.2.1
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/dist/actions/help.d.ts +1 -14
- package/dist/actions/lifecycle.d.ts +1 -14
- package/package.json +1 -1
package/dist/actions/help.d.ts
CHANGED
|
@@ -22,20 +22,7 @@ export declare class HelpMixin {
|
|
|
22
22
|
*
|
|
23
23
|
* @param description
|
|
24
24
|
*/
|
|
25
|
-
desc(this: BaseGenerator, description: string):
|
|
26
|
-
unique?: true | "argument" | "namespace" | undefined;
|
|
27
|
-
tasksMatchingPriority?: boolean | undefined;
|
|
28
|
-
taskPrefix?: string | undefined;
|
|
29
|
-
skipParseOptions?: boolean | undefined;
|
|
30
|
-
disableInGeneratorOptionsSupport?: boolean | undefined;
|
|
31
|
-
customPriorities?: import("../types.js").Priority[] | undefined;
|
|
32
|
-
inheritTasks?: boolean | undefined;
|
|
33
|
-
configTransform?: import("../types.js").StorageTransform<Record<string, any>> | undefined;
|
|
34
|
-
uniqueBy?: string | undefined;
|
|
35
|
-
uniqueGlobally?: boolean | undefined;
|
|
36
|
-
customCommitTask?: (() => Promise<void> | void) | undefined;
|
|
37
|
-
customInstallTask?: (boolean | import("@yeoman/types").InstallTask | "ask") | undefined;
|
|
38
|
-
}, Record<any, any>, Record<any, any>, Record<any, any>>;
|
|
25
|
+
desc(this: BaseGenerator, description: string): typeof this;
|
|
39
26
|
/**
|
|
40
27
|
* Get help text for arguments
|
|
41
28
|
* @returns Text of options in formatted table
|
|
@@ -145,19 +145,6 @@ export declare abstract class TasksMixin {
|
|
|
145
145
|
*/
|
|
146
146
|
queueTransformStream(this: BaseGeneratorImpl, options?: GeneratorPipelineOptions & {
|
|
147
147
|
priorityToQueue?: string;
|
|
148
|
-
}, ...transforms: Array<FileTransform<MemFsEditorFile>>):
|
|
149
|
-
unique?: true | "argument" | "namespace" | undefined;
|
|
150
|
-
tasksMatchingPriority?: boolean | undefined;
|
|
151
|
-
taskPrefix?: string | undefined;
|
|
152
|
-
skipParseOptions?: boolean | undefined;
|
|
153
|
-
disableInGeneratorOptionsSupport?: boolean | undefined;
|
|
154
|
-
customPriorities?: Priority[] | undefined;
|
|
155
|
-
inheritTasks?: boolean | undefined;
|
|
156
|
-
configTransform?: import("../types.js").StorageTransform<Record<string, any>> | undefined;
|
|
157
|
-
uniqueBy?: string | undefined;
|
|
158
|
-
uniqueGlobally?: boolean | undefined;
|
|
159
|
-
customCommitTask?: (() => Promise<void> | void) | undefined;
|
|
160
|
-
customInstallTask?: (boolean | import("@yeoman/types").InstallTask | "ask") | undefined;
|
|
161
|
-
}, Record<any, any>, Record<any, any>, Record<any, any>>;
|
|
148
|
+
}, ...transforms: Array<FileTransform<MemFsEditorFile>>): typeof this;
|
|
162
149
|
}
|
|
163
150
|
export {};
|