@yeoman/types 1.2.0 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeoman/types",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "private": false,
5
5
  "description": "Common API for yeoman's generator/environment stack",
6
6
  "keywords": [
@@ -22,7 +22,6 @@
22
22
  "build": "tsc",
23
23
  "clean": "",
24
24
  "clean-all": "rimraf node_modules",
25
- "pretest": "xo",
26
25
  "test": ""
27
26
  },
28
27
  "dependencies": {
@@ -60,5 +59,5 @@
60
59
  "mem-fs": "^4.0.0-beta.1",
61
60
  "mem-fs-editor": ">=10.0.2"
62
61
  },
63
- "gitHead": "f2744847a843384562adc6bf7f10a1349305c5ea"
62
+ "gitHead": "e0b4188a17e10dd8ec563ee9baa31574cb77d7fe"
64
63
  }
@@ -7,12 +7,12 @@ import type { BaseGenerator, BaseGeneratorConstructor } from '../generator/gener
7
7
  import type { GetGeneratorConstructor } from '../generator/utils.js';
8
8
  import type { InputOutputAdapter } from './adapter.js';
9
9
  import type {
10
+ BaseGeneratorMeta,
11
+ ComposeOptions,
10
12
  GeneratorMeta,
13
+ InstantiateOptions,
11
14
  LookupGeneratorMeta,
12
15
  LookupOptions,
13
- BaseGeneratorMeta,
14
- InstantiateOptions,
15
- ComposeOptions,
16
16
  } from './methods-options.js';
17
17
 
18
18
  export type EnvironmentConstructor<A extends InputOutputAdapter = InputOutputAdapter> = new (
@@ -1,4 +1,4 @@
1
- import type { GetGeneratorOptions, BaseGenerator, GetGeneratorConstructor } from '../index.js';
1
+ import type { BaseGenerator, GetGeneratorConstructor, GetGeneratorOptions } from '../index.js';
2
2
 
3
3
  /**
4
4
  * Provides options for the `lookup` method.
@@ -19,7 +19,6 @@ export type EnvironmentGenerator = {
19
19
  /**
20
20
  * Set the generator destination root directory.
21
21
  */
22
- // eslint-disable-next-line @typescript-eslint/unified-signatures
23
22
  destinationRoot(rootPath: string): string;
24
23
 
25
24
  // Generator >= v5