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.
@@ -22,20 +22,7 @@ export declare class HelpMixin {
22
22
  *
23
23
  * @param description
24
24
  */
25
- desc(this: BaseGenerator, description: string): BaseGenerator<Record<any, any>, import("../types.js").BaseOptions, {
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>>): BaseGeneratorImpl<Record<any, any>, BaseOptions, {
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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yeoman-generator",
3
- "version": "8.2.0",
3
+ "version": "8.2.1",
4
4
  "description": "Rails-inspired generator system that provides scaffolding for your apps",
5
5
  "keywords": [
6
6
  "development",