@storm-software/git-tools 2.113.17 → 2.113.19
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/README.md +1 -1
- package/bin/git.cjs +32 -564
- package/bin/git.js +32 -545
- package/package.json +15 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/git-tools",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Tools for managing Git repositories within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -216,37 +216,27 @@
|
|
|
216
216
|
],
|
|
217
217
|
"peerDependencies": { "zod": ">=4.0.0" },
|
|
218
218
|
"dependencies": {
|
|
219
|
+
"@inquirer/prompts": "7.2.1",
|
|
220
|
+
"@nx/devkit": "^21.3.10",
|
|
221
|
+
"@nx/js": "^21.3.10",
|
|
222
|
+
"@storm-software/config": "^1.125.17",
|
|
223
|
+
"@storm-software/config-tools": "^1.176.19",
|
|
224
|
+
"any-shell-escape": "0.1.1",
|
|
225
|
+
"axios": "1.8.2",
|
|
226
|
+
"chalk": "^4.1.2",
|
|
227
|
+
"chalk-template": "1.1.0",
|
|
219
228
|
"nx": "^21.3.10",
|
|
220
229
|
"prettier": "^3.5.1",
|
|
221
|
-
"tsconfig-paths": "4.2.0"
|
|
230
|
+
"tsconfig-paths": "4.2.0",
|
|
231
|
+
"zod": "^4.0.2"
|
|
222
232
|
},
|
|
223
233
|
"devDependencies": {
|
|
234
|
+
"@commitlint/ensure": "^19.8.1",
|
|
224
235
|
"@commitlint/rules": "^19.8.1",
|
|
225
|
-
"@inquirer/checkbox": "4.0.4",
|
|
226
|
-
"@inquirer/confirm": "5.1.1",
|
|
227
|
-
"@inquirer/core": "10.1.2",
|
|
228
|
-
"@inquirer/editor": "4.2.1",
|
|
229
|
-
"@inquirer/expand": "4.0.4",
|
|
230
|
-
"@inquirer/figures": "1.0.9",
|
|
231
|
-
"@inquirer/input": "4.1.1",
|
|
232
|
-
"@inquirer/number": "3.0.4",
|
|
233
|
-
"@inquirer/password": "4.0.4",
|
|
234
|
-
"@inquirer/prompts": "7.2.1",
|
|
235
|
-
"@inquirer/rawlist": "4.0.4",
|
|
236
|
-
"@inquirer/search": "3.0.4",
|
|
237
|
-
"@inquirer/select": "4.0.4",
|
|
238
|
-
"@nx/devkit": "^21.3.10",
|
|
239
|
-
"@nx/js": "^21.3.10",
|
|
240
|
-
"@storm-software/config": "^1.125.16",
|
|
241
|
-
"@storm-software/config-tools": "^1.176.17",
|
|
242
236
|
"@textlint/ast-node-types": "14.4.2",
|
|
243
237
|
"@textlint/markdown-to-ast": "14.4.2",
|
|
244
238
|
"@types/node": "^22.10.2",
|
|
245
239
|
"anchor-markdown-header": "0.7.0",
|
|
246
|
-
"any-shell-escape": "0.1.1",
|
|
247
|
-
"axios": "1.8.2",
|
|
248
|
-
"chalk": "^4.1.2",
|
|
249
|
-
"chalk-template": "1.1.0",
|
|
250
240
|
"commander": "^12.1.0",
|
|
251
241
|
"conventional-commits-parser": "^6.2.0",
|
|
252
242
|
"defu": "6.1.4",
|
|
@@ -258,9 +248,8 @@
|
|
|
258
248
|
"tsup": "8.4.0",
|
|
259
249
|
"underscore": "1.13.7",
|
|
260
250
|
"update-section": "0.3.3",
|
|
261
|
-
"word-wrap": "1.2.5"
|
|
262
|
-
"zod": "^4.0.2"
|
|
251
|
+
"word-wrap": "1.2.5"
|
|
263
252
|
},
|
|
264
253
|
"publishConfig": { "access": "public" },
|
|
265
|
-
"gitHead": "
|
|
254
|
+
"gitHead": "cc140afa49466e39f555922878718b7cb860d73b"
|
|
266
255
|
}
|