yeoman-environment 4.4.1 → 4.4.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.
- package/package.json +6 -4
- package/readme.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yeoman-environment",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"description": "Handles the lifecyle and bootstrapping of generators in a specific environment",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"development",
|
|
@@ -83,16 +83,15 @@
|
|
|
83
83
|
"@types/debug": "^4.1.9",
|
|
84
84
|
"@types/lodash-es": "^4.17.9",
|
|
85
85
|
"@types/semver": "^7.5.3",
|
|
86
|
-
"c8": "^
|
|
86
|
+
"c8": "^10.1.2",
|
|
87
87
|
"cpy-cli": "^5.0.0",
|
|
88
88
|
"esmocha": "^1.0.1",
|
|
89
89
|
"fs-extra": "^11.1.1",
|
|
90
|
-
"inquirer": "^9.2.11",
|
|
91
90
|
"jsdoc": "^4.0.2",
|
|
92
91
|
"prettier": "3.0.3",
|
|
93
92
|
"prettier-plugin-packagejson": "^2.4.6",
|
|
94
93
|
"rimraf": "^5.0.5",
|
|
95
|
-
"sinon": "^
|
|
94
|
+
"sinon": "^19.0.2",
|
|
96
95
|
"sinon-test": "^3.1.5",
|
|
97
96
|
"strip-ansi": "^7.1.0",
|
|
98
97
|
"typescript": "5.2.2",
|
|
@@ -169,6 +168,9 @@
|
|
|
169
168
|
"@yeoman/types": "^1.1.1",
|
|
170
169
|
"mem-fs": "^4.0.0"
|
|
171
170
|
},
|
|
171
|
+
"acceptDependencies": {
|
|
172
|
+
"@yeoman/adapter": "^2.0.0"
|
|
173
|
+
},
|
|
172
174
|
"engines": {
|
|
173
175
|
"node": "^18.17.0 || >=20.5.0"
|
|
174
176
|
}
|
package/readme.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Yeoman Environment
|
|
2
2
|
|
|
3
|
-
[](http://badge.fury.io/js/yeoman-environment) [](http://badge.fury.io/js/yeoman-environment) [](https://github.com/yeoman/environment/actions/workflows/ci.yml) [](https://coveralls.io/github/yeoman/environment?branch=master) [](https://gitter.im/yeoman/yeoman)
|
|
4
4
|
|
|
5
5
|
> Handles the lifecycle and bootstrapping of generators in a specific environment
|
|
6
6
|
|