yeoman-generator 7.1.0 → 7.1.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/generator.d.ts +1 -3
- package/dist/generator.js +1 -1
- package/package.json +4 -4
package/dist/generator.d.ts
CHANGED
|
@@ -14,9 +14,7 @@ import { PackageJsonMixin } from './actions/package-json.js';
|
|
|
14
14
|
import { SpawnCommandMixin } from './actions/spawn-command.js';
|
|
15
15
|
import { GitMixin } from './actions/user.js';
|
|
16
16
|
import { TasksMixin } from './actions/lifecycle.js';
|
|
17
|
-
type Environment = BaseEnvironment<QueuedAdapter
|
|
18
|
-
resolvePackage: any;
|
|
19
|
-
};
|
|
17
|
+
type Environment = BaseEnvironment<QueuedAdapter>;
|
|
20
18
|
export declare class BaseGenerator<O extends BaseOptions = BaseOptions, F extends BaseFeatures = BaseFeatures> extends EventEmitter implements Omit<GeneratorApi<O, F>, 'features'> {
|
|
21
19
|
readonly options: O;
|
|
22
20
|
readonly _initOptions: O;
|
package/dist/generator.js
CHANGED
|
@@ -5,7 +5,7 @@ import EventEmitter from 'node:events';
|
|
|
5
5
|
import { fileURLToPath } from 'node:url';
|
|
6
6
|
import * as _ from 'lodash-es';
|
|
7
7
|
import semver from 'semver';
|
|
8
|
-
import { readPackageUpSync } from 'read-
|
|
8
|
+
import { readPackageUpSync } from 'read-package-up';
|
|
9
9
|
import chalk from 'chalk';
|
|
10
10
|
import minimist from 'minimist';
|
|
11
11
|
import createDebug from 'debug';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yeoman-generator",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.1",
|
|
4
4
|
"description": "Rails-inspired generator system that provides scaffolding for your apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"development",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"lodash-es": "^4.17.21",
|
|
64
64
|
"mem-fs-editor": "^11.0.0",
|
|
65
65
|
"minimist": "^1.2.8",
|
|
66
|
-
"read-
|
|
66
|
+
"read-package-up": "^11.0.0",
|
|
67
67
|
"semver": "^7.5.4",
|
|
68
68
|
"simple-git": "^3.20.0",
|
|
69
69
|
"sort-keys": "^5.0.0",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"@types/inquirer": "^9.0.4",
|
|
76
76
|
"@types/minimist": "^1.2.3",
|
|
77
77
|
"@types/semver": "^7.5.3",
|
|
78
|
-
"@types/sinon": "^
|
|
78
|
+
"@types/sinon": "^17.0.1",
|
|
79
79
|
"@types/text-table": "^0.2.3",
|
|
80
80
|
"@yeoman/adapter": "^1.4.0",
|
|
81
81
|
"@yeoman/transform": "^1.2.0",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"nock": "^13.3.4",
|
|
89
89
|
"prettier": "^3.0.3",
|
|
90
90
|
"prettier-plugin-packagejson": "^2.4.6",
|
|
91
|
-
"sinon": "^
|
|
91
|
+
"sinon": "^17.0.1",
|
|
92
92
|
"tui-jsdoc-template": "^1.2.2",
|
|
93
93
|
"typescript": "^5.2.2",
|
|
94
94
|
"xo": "^0.56.0",
|