@storm-software/git-tools 2.104.49 → 2.105.0
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 +2 -1
- package/package.json +37 -12
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
40
40
|
|
|
41
41
|
<!-- START doctoc -->
|
|
42
42
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
43
|
+
|
|
43
44
|
## Table of Contents
|
|
44
45
|
|
|
45
46
|
- [Storm Git Tools](#storm-git-tools)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/git-tools",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.105.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Tools for managing Git repositories within a Nx workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -40,8 +40,10 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "Apache-2.0",
|
|
42
42
|
"private": false,
|
|
43
|
-
"
|
|
44
|
-
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=22.4.0",
|
|
45
|
+
"pnpm": ">=10.3.0"
|
|
46
|
+
},
|
|
45
47
|
"bin": {
|
|
46
48
|
"storm-git": "./bin/git.cjs",
|
|
47
49
|
"storm-git-esm": "./bin/git.js",
|
|
@@ -76,28 +78,46 @@
|
|
|
76
78
|
"exports": {
|
|
77
79
|
"./package.json": "./package.json",
|
|
78
80
|
".": {
|
|
79
|
-
"import": {
|
|
81
|
+
"import": {
|
|
82
|
+
"types": "./dist/index.d.ts",
|
|
83
|
+
"default": "./dist/index.js"
|
|
84
|
+
},
|
|
80
85
|
"require": {
|
|
81
86
|
"types": "./dist/index.d.cts",
|
|
82
87
|
"default": "./dist/index.cjs"
|
|
83
88
|
},
|
|
84
|
-
"default": {
|
|
89
|
+
"default": {
|
|
90
|
+
"types": "./dist/index.d.ts",
|
|
91
|
+
"default": "./dist/index.js"
|
|
92
|
+
}
|
|
85
93
|
},
|
|
86
94
|
"./index": {
|
|
87
|
-
"import": {
|
|
95
|
+
"import": {
|
|
96
|
+
"types": "./dist/index.d.ts",
|
|
97
|
+
"default": "./dist/index.js"
|
|
98
|
+
},
|
|
88
99
|
"require": {
|
|
89
100
|
"types": "./dist/index.d.cts",
|
|
90
101
|
"default": "./dist/index.cjs"
|
|
91
102
|
},
|
|
92
|
-
"default": {
|
|
103
|
+
"default": {
|
|
104
|
+
"types": "./dist/index.d.ts",
|
|
105
|
+
"default": "./dist/index.js"
|
|
106
|
+
}
|
|
93
107
|
},
|
|
94
108
|
"./types": {
|
|
95
|
-
"import": {
|
|
109
|
+
"import": {
|
|
110
|
+
"types": "./dist/types.d.ts",
|
|
111
|
+
"default": "./dist/types.js"
|
|
112
|
+
},
|
|
96
113
|
"require": {
|
|
97
114
|
"types": "./dist/types.d.cts",
|
|
98
115
|
"default": "./dist/types.cjs"
|
|
99
116
|
},
|
|
100
|
-
"default": {
|
|
117
|
+
"default": {
|
|
118
|
+
"types": "./dist/types.d.ts",
|
|
119
|
+
"default": "./dist/types.js"
|
|
120
|
+
}
|
|
101
121
|
},
|
|
102
122
|
"./commit/config": {
|
|
103
123
|
"import": {
|
|
@@ -202,7 +222,10 @@
|
|
|
202
222
|
"./readme/templates/*": "./dist/readme/templates/*"
|
|
203
223
|
},
|
|
204
224
|
"types": "./dist/index.d.ts",
|
|
205
|
-
"files": [
|
|
225
|
+
"files": [
|
|
226
|
+
"bin/**/*",
|
|
227
|
+
"dist/**/*"
|
|
228
|
+
],
|
|
206
229
|
"keywords": [
|
|
207
230
|
"storm-software",
|
|
208
231
|
"monorepo",
|
|
@@ -261,5 +284,7 @@
|
|
|
261
284
|
"update-section": "0.3.3",
|
|
262
285
|
"word-wrap": "1.2.5"
|
|
263
286
|
},
|
|
264
|
-
"publishConfig": {
|
|
265
|
-
|
|
287
|
+
"publishConfig": {
|
|
288
|
+
"access": "public"
|
|
289
|
+
}
|
|
290
|
+
}
|