yeoman-generator 8.2.1 → 8.2.2

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.
@@ -78,7 +78,7 @@ export declare class BaseGenerator<ConfigType extends Record<any, any> = Record<
78
78
  * }
79
79
  * };
80
80
  */
81
- constructor(args?: string[], options?: O, features?: F);
81
+ constructor(args?: string[], options?: BaseOptions, features?: BaseFeatures);
82
82
  /**
83
83
  * Configure Generator behaviours.
84
84
  *
package/dist/index.d.ts CHANGED
@@ -10,7 +10,7 @@ type SimpleGitWithConstants = SimpleGit & {
10
10
  CleanOptions: typeof CleanOptions;
11
11
  };
12
12
  export default class Generator<C extends Record<any, any> = Record<any, any>, O extends BaseOptions = BaseOptions, F extends BaseFeatures = BaseFeatures> extends BaseGenerator<C, O, F> {
13
- constructor(arguments_?: string[], options?: O, features?: F);
13
+ constructor(arguments_?: string[], options?: BaseOptions, features?: BaseFeatures);
14
14
  get simpleGit(): SimpleGitWithConstants;
15
15
  createSimpleGit(options?: Partial<SimpleGitOptions>): SimpleGitWithConstants;
16
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yeoman-generator",
3
- "version": "8.2.1",
3
+ "version": "8.2.2",
4
4
  "description": "Rails-inspired generator system that provides scaffolding for your apps",
5
5
  "keywords": [
6
6
  "development",