@yeoman/conflicter 1.0.5 → 1.0.7
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/conflicter.d.ts +2 -2
- package/package.json +6 -9
package/dist/conflicter.d.ts
CHANGED
|
@@ -101,6 +101,6 @@ export declare class Conflicter {
|
|
|
101
101
|
* @param {Number} counter prompts
|
|
102
102
|
*/
|
|
103
103
|
private _ask;
|
|
104
|
-
createTransform(): import("p-transform").
|
|
104
|
+
createTransform(): import("p-transform").DuplexWithDebug;
|
|
105
105
|
}
|
|
106
|
-
export declare const createConflicterTransform: (adapter: InputOutputAdapter, options?: ConflicterOptions | undefined) => import("p-transform").
|
|
106
|
+
export declare const createConflicterTransform: (adapter: InputOutputAdapter, options?: ConflicterOptions | undefined) => import("p-transform").DuplexWithDebug;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yeoman/conflicter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Conflict resolution for yeoman's generator/environment stack",
|
|
6
6
|
"keywords": [
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"clean-all": "npm run clean && rimraf node_modules",
|
|
31
31
|
"precommit": "lint-staged",
|
|
32
32
|
"pretest": "xo",
|
|
33
|
-
"test": "
|
|
33
|
+
"test": "vitest run --coverage"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@types/node": "^16.18.28",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"mem-fs": "^3.0.0",
|
|
44
44
|
"mem-fs-editor": "^10.0.2",
|
|
45
45
|
"minimatch": "^9.0.0",
|
|
46
|
-
"p-transform": "^
|
|
46
|
+
"p-transform": "^4.0.5",
|
|
47
47
|
"pretty-bytes": "^6.1.0",
|
|
48
48
|
"textextensions": "^5.16.0"
|
|
49
49
|
},
|
|
@@ -52,12 +52,9 @@
|
|
|
52
52
|
"@types/dateformat": "^5.0.0",
|
|
53
53
|
"@types/diff": "^5.0.3",
|
|
54
54
|
"@types/textextensions": "^2.4.0",
|
|
55
|
-
"@yeoman/adapter": "^1.0
|
|
56
|
-
"esmocha": "^0.1.4",
|
|
55
|
+
"@yeoman/adapter": "^1.1.0",
|
|
57
56
|
"lodash-es": "^4.17.21",
|
|
58
|
-
"
|
|
59
|
-
"slash": "^5.1.0",
|
|
60
|
-
"yeoman-test": "^8.0.0-beta.4"
|
|
57
|
+
"slash": "^5.1.0"
|
|
61
58
|
},
|
|
62
59
|
"peerDependencies": {
|
|
63
60
|
"@yeoman/types": "^1.0.0"
|
|
@@ -69,5 +66,5 @@
|
|
|
69
66
|
"access": "public",
|
|
70
67
|
"registry": "https://registry.npmjs.org/"
|
|
71
68
|
},
|
|
72
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "c1a992ce69f2d86f1696f0679ac35e83bcd267fc"
|
|
73
70
|
}
|