@storm-software/git-tools 2.102.0 → 2.103.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/dist/types.d.cts CHANGED
@@ -28,36 +28,16 @@ declare const DEFAULT_COMMIT_TYPES: {
28
28
  readonly hidden: false;
29
29
  };
30
30
  };
31
- readonly ci: {
32
- readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
33
- readonly title: "Continuous Integration";
34
- readonly emoji: "🧰 ";
35
- readonly semverBump: "patch";
36
- readonly changelog: {
37
- readonly title: "Continuous Integration";
38
- readonly hidden: false;
39
- };
40
- };
41
- readonly deps: {
42
- readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
43
- readonly title: "Dependencies";
44
- readonly emoji: "📦 ";
31
+ readonly fix: {
32
+ readonly description: "A change that resolves an issue previously identified with the package";
33
+ readonly title: "Bug Fix";
34
+ readonly emoji: "🪲 ";
45
35
  readonly semverBump: "patch";
46
36
  readonly changelog: {
47
- readonly title: "Dependency Upgrades";
37
+ readonly title: "Bug Fixes";
48
38
  readonly hidden: false;
49
39
  };
50
40
  };
51
- readonly docs: {
52
- readonly description: "A change that only includes documentation updates";
53
- readonly title: "Documentation";
54
- readonly emoji: "📜 ";
55
- readonly semverBump: "none";
56
- readonly changelog: {
57
- readonly title: "Documentation";
58
- readonly hidden: true;
59
- };
60
- };
61
41
  readonly feat: {
62
42
  readonly description: "A change that adds a new feature to the package";
63
43
  readonly title: "Feature";
@@ -68,23 +48,13 @@ declare const DEFAULT_COMMIT_TYPES: {
68
48
  readonly hidden: false;
69
49
  };
70
50
  };
71
- readonly fix: {
72
- readonly description: "A change that resolves an issue previously identified with the package";
73
- readonly title: "Bug Fix";
74
- readonly emoji: "🪲 ";
51
+ readonly ci: {
52
+ readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
53
+ readonly title: "Continuous Integration";
54
+ readonly emoji: "🧰 ";
75
55
  readonly semverBump: "patch";
76
56
  readonly changelog: {
77
- readonly title: "Bug Fixes";
78
- readonly hidden: false;
79
- };
80
- };
81
- readonly perf: {
82
- readonly description: "A code change that improves performance";
83
- readonly title: "Performance Improvement";
84
- readonly emoji: "⏱️ ";
85
- readonly semverBump: "none";
86
- readonly changelog: {
87
- readonly title: "Performance Improvements";
57
+ readonly title: "Continuous Integration";
88
58
  readonly hidden: false;
89
59
  };
90
60
  };
@@ -94,27 +64,37 @@ declare const DEFAULT_COMMIT_TYPES: {
94
64
  readonly emoji: "🧪 ";
95
65
  readonly semverBump: "patch";
96
66
  readonly changelog: {
97
- readonly title: "Code Improvements";
67
+ readonly title: "Source Code Improvements";
98
68
  readonly hidden: false;
99
69
  };
100
70
  };
101
- readonly revert: {
102
- readonly description: "Revert a previously committed change";
103
- readonly title: "Revert";
104
- readonly emoji: "🗑️ ";
71
+ readonly style: {
72
+ readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
73
+ readonly title: "Style Improvements";
74
+ readonly emoji: "💎 ";
105
75
  readonly semverBump: "patch";
106
76
  readonly changelog: {
107
- readonly title: "Reverts";
77
+ readonly title: "Style Improvements";
108
78
  readonly hidden: false;
109
79
  };
110
80
  };
111
- readonly style: {
112
- readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
113
- readonly title: "Styling";
114
- readonly emoji: "💎 ";
115
- readonly semverBump: "minor";
81
+ readonly perf: {
82
+ readonly description: "A code change that improves performance";
83
+ readonly title: "Performance Improvement";
84
+ readonly emoji: "⏱️ ";
85
+ readonly semverBump: "patch";
86
+ readonly changelog: {
87
+ readonly title: "Performance Improvements";
88
+ readonly hidden: false;
89
+ };
90
+ };
91
+ readonly docs: {
92
+ readonly description: "A change that only includes documentation updates";
93
+ readonly title: "Documentation";
94
+ readonly emoji: "📜 ";
95
+ readonly semverBump: "none";
116
96
  readonly changelog: {
117
- readonly title: "Styling";
97
+ readonly title: "Documentation";
118
98
  readonly hidden: false;
119
99
  };
120
100
  };
@@ -128,16 +108,28 @@ declare const DEFAULT_COMMIT_TYPES: {
128
108
  readonly hidden: true;
129
109
  };
130
110
  };
131
- readonly types: {
132
- readonly description: "Changes that affect the project's type definitions";
133
- readonly title: "Type Definition";
134
- readonly emoji: "📓 ";
135
- readonly semverBump: "minor";
111
+ readonly deps: {
112
+ readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
113
+ readonly title: "Dependencies";
114
+ readonly emoji: "📦 ";
115
+ readonly hidden: true;
116
+ readonly semverBump: "patch";
136
117
  readonly changelog: {
137
- readonly title: "Type Definitions";
118
+ readonly title: "Dependency Upgrades";
138
119
  readonly hidden: false;
139
120
  };
140
121
  };
122
+ readonly build: {
123
+ readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
124
+ readonly title: "Build";
125
+ readonly emoji: "🛠 ";
126
+ readonly hidden: true;
127
+ readonly semverBump: "none";
128
+ readonly changelog: {
129
+ readonly title: "Build";
130
+ readonly hidden: true;
131
+ };
132
+ };
141
133
  readonly release: {
142
134
  readonly description: "Publishing a commit containing a newly released version";
143
135
  readonly title: "Publish Release";
@@ -172,139 +164,7 @@ declare const DEFAULT_COMMIT_QUESTIONS: {
172
164
  readonly type: "select";
173
165
  readonly title: "Commit Type";
174
166
  readonly description: "Select the commit type that best describes your changes";
175
- readonly enum: {
176
- readonly chore: {
177
- readonly description: "Other changes that don't modify src or test files";
178
- readonly title: "Chore";
179
- readonly emoji: "⚙️ ";
180
- readonly semverBump: "patch";
181
- readonly changelog: {
182
- readonly title: "Miscellaneous";
183
- readonly hidden: false;
184
- };
185
- };
186
- readonly ci: {
187
- readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
188
- readonly title: "Continuous Integration";
189
- readonly emoji: "🧰 ";
190
- readonly semverBump: "patch";
191
- readonly changelog: {
192
- readonly title: "Continuous Integration";
193
- readonly hidden: false;
194
- };
195
- };
196
- readonly deps: {
197
- readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
198
- readonly title: "Dependencies";
199
- readonly emoji: "📦 ";
200
- readonly semverBump: "patch";
201
- readonly changelog: {
202
- readonly title: "Dependency Upgrades";
203
- readonly hidden: false;
204
- };
205
- };
206
- readonly docs: {
207
- readonly description: "A change that only includes documentation updates";
208
- readonly title: "Documentation";
209
- readonly emoji: "📜 ";
210
- readonly semverBump: "none";
211
- readonly changelog: {
212
- readonly title: "Documentation";
213
- readonly hidden: true;
214
- };
215
- };
216
- readonly feat: {
217
- readonly description: "A change that adds a new feature to the package";
218
- readonly title: "Feature";
219
- readonly emoji: "🔑 ";
220
- readonly semverBump: "minor";
221
- readonly changelog: {
222
- readonly title: "Features";
223
- readonly hidden: false;
224
- };
225
- };
226
- readonly fix: {
227
- readonly description: "A change that resolves an issue previously identified with the package";
228
- readonly title: "Bug Fix";
229
- readonly emoji: "🪲 ";
230
- readonly semverBump: "patch";
231
- readonly changelog: {
232
- readonly title: "Bug Fixes";
233
- readonly hidden: false;
234
- };
235
- };
236
- readonly perf: {
237
- readonly description: "A code change that improves performance";
238
- readonly title: "Performance Improvement";
239
- readonly emoji: "⏱️ ";
240
- readonly semverBump: "none";
241
- readonly changelog: {
242
- readonly title: "Performance Improvements";
243
- readonly hidden: false;
244
- };
245
- };
246
- readonly refactor: {
247
- readonly description: "A code change that neither fixes a bug nor adds a feature";
248
- readonly title: "Code Refactoring";
249
- readonly emoji: "🧪 ";
250
- readonly semverBump: "patch";
251
- readonly changelog: {
252
- readonly title: "Code Improvements";
253
- readonly hidden: false;
254
- };
255
- };
256
- readonly revert: {
257
- readonly description: "Revert a previously committed change";
258
- readonly title: "Revert";
259
- readonly emoji: "🗑️ ";
260
- readonly semverBump: "patch";
261
- readonly changelog: {
262
- readonly title: "Reverts";
263
- readonly hidden: false;
264
- };
265
- };
266
- readonly style: {
267
- readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
268
- readonly title: "Styling";
269
- readonly emoji: "💎 ";
270
- readonly semverBump: "minor";
271
- readonly changelog: {
272
- readonly title: "Styling";
273
- readonly hidden: false;
274
- };
275
- };
276
- readonly test: {
277
- readonly description: "Adding missing tests or correcting existing tests";
278
- readonly title: "Testing";
279
- readonly emoji: "🚨 ";
280
- readonly semverBump: "none";
281
- readonly changelog: {
282
- readonly title: "Testing";
283
- readonly hidden: true;
284
- };
285
- };
286
- readonly types: {
287
- readonly description: "Changes that affect the project's type definitions";
288
- readonly title: "Type Definition";
289
- readonly emoji: "📓 ";
290
- readonly semverBump: "minor";
291
- readonly changelog: {
292
- readonly title: "Type Definitions";
293
- readonly hidden: false;
294
- };
295
- };
296
- readonly release: {
297
- readonly description: "Publishing a commit containing a newly released version";
298
- readonly title: "Publish Release";
299
- readonly emoji: "🚀 ";
300
- readonly hidden: true;
301
- readonly semverBump: "none";
302
- readonly changelog: {
303
- readonly title: "Publish Release";
304
- readonly hidden: true;
305
- };
306
- };
307
- };
167
+ readonly enum: CommitTypesEnum<"chore" | "fix" | "feat" | "ci" | "refactor" | "style" | "perf" | "docs" | "test" | "deps" | "build" | "release">;
308
168
  readonly defaultValue: "chore";
309
169
  readonly maxLength: 20;
310
170
  readonly minLength: 3;
package/dist/types.d.ts CHANGED
@@ -28,36 +28,16 @@ declare const DEFAULT_COMMIT_TYPES: {
28
28
  readonly hidden: false;
29
29
  };
30
30
  };
31
- readonly ci: {
32
- readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
33
- readonly title: "Continuous Integration";
34
- readonly emoji: "🧰 ";
35
- readonly semverBump: "patch";
36
- readonly changelog: {
37
- readonly title: "Continuous Integration";
38
- readonly hidden: false;
39
- };
40
- };
41
- readonly deps: {
42
- readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
43
- readonly title: "Dependencies";
44
- readonly emoji: "📦 ";
31
+ readonly fix: {
32
+ readonly description: "A change that resolves an issue previously identified with the package";
33
+ readonly title: "Bug Fix";
34
+ readonly emoji: "🪲 ";
45
35
  readonly semverBump: "patch";
46
36
  readonly changelog: {
47
- readonly title: "Dependency Upgrades";
37
+ readonly title: "Bug Fixes";
48
38
  readonly hidden: false;
49
39
  };
50
40
  };
51
- readonly docs: {
52
- readonly description: "A change that only includes documentation updates";
53
- readonly title: "Documentation";
54
- readonly emoji: "📜 ";
55
- readonly semverBump: "none";
56
- readonly changelog: {
57
- readonly title: "Documentation";
58
- readonly hidden: true;
59
- };
60
- };
61
41
  readonly feat: {
62
42
  readonly description: "A change that adds a new feature to the package";
63
43
  readonly title: "Feature";
@@ -68,23 +48,13 @@ declare const DEFAULT_COMMIT_TYPES: {
68
48
  readonly hidden: false;
69
49
  };
70
50
  };
71
- readonly fix: {
72
- readonly description: "A change that resolves an issue previously identified with the package";
73
- readonly title: "Bug Fix";
74
- readonly emoji: "🪲 ";
51
+ readonly ci: {
52
+ readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
53
+ readonly title: "Continuous Integration";
54
+ readonly emoji: "🧰 ";
75
55
  readonly semverBump: "patch";
76
56
  readonly changelog: {
77
- readonly title: "Bug Fixes";
78
- readonly hidden: false;
79
- };
80
- };
81
- readonly perf: {
82
- readonly description: "A code change that improves performance";
83
- readonly title: "Performance Improvement";
84
- readonly emoji: "⏱️ ";
85
- readonly semverBump: "none";
86
- readonly changelog: {
87
- readonly title: "Performance Improvements";
57
+ readonly title: "Continuous Integration";
88
58
  readonly hidden: false;
89
59
  };
90
60
  };
@@ -94,27 +64,37 @@ declare const DEFAULT_COMMIT_TYPES: {
94
64
  readonly emoji: "🧪 ";
95
65
  readonly semverBump: "patch";
96
66
  readonly changelog: {
97
- readonly title: "Code Improvements";
67
+ readonly title: "Source Code Improvements";
98
68
  readonly hidden: false;
99
69
  };
100
70
  };
101
- readonly revert: {
102
- readonly description: "Revert a previously committed change";
103
- readonly title: "Revert";
104
- readonly emoji: "🗑️ ";
71
+ readonly style: {
72
+ readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
73
+ readonly title: "Style Improvements";
74
+ readonly emoji: "💎 ";
105
75
  readonly semverBump: "patch";
106
76
  readonly changelog: {
107
- readonly title: "Reverts";
77
+ readonly title: "Style Improvements";
108
78
  readonly hidden: false;
109
79
  };
110
80
  };
111
- readonly style: {
112
- readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
113
- readonly title: "Styling";
114
- readonly emoji: "💎 ";
115
- readonly semverBump: "minor";
81
+ readonly perf: {
82
+ readonly description: "A code change that improves performance";
83
+ readonly title: "Performance Improvement";
84
+ readonly emoji: "⏱️ ";
85
+ readonly semverBump: "patch";
86
+ readonly changelog: {
87
+ readonly title: "Performance Improvements";
88
+ readonly hidden: false;
89
+ };
90
+ };
91
+ readonly docs: {
92
+ readonly description: "A change that only includes documentation updates";
93
+ readonly title: "Documentation";
94
+ readonly emoji: "📜 ";
95
+ readonly semverBump: "none";
116
96
  readonly changelog: {
117
- readonly title: "Styling";
97
+ readonly title: "Documentation";
118
98
  readonly hidden: false;
119
99
  };
120
100
  };
@@ -128,16 +108,28 @@ declare const DEFAULT_COMMIT_TYPES: {
128
108
  readonly hidden: true;
129
109
  };
130
110
  };
131
- readonly types: {
132
- readonly description: "Changes that affect the project's type definitions";
133
- readonly title: "Type Definition";
134
- readonly emoji: "📓 ";
135
- readonly semverBump: "minor";
111
+ readonly deps: {
112
+ readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
113
+ readonly title: "Dependencies";
114
+ readonly emoji: "📦 ";
115
+ readonly hidden: true;
116
+ readonly semverBump: "patch";
136
117
  readonly changelog: {
137
- readonly title: "Type Definitions";
118
+ readonly title: "Dependency Upgrades";
138
119
  readonly hidden: false;
139
120
  };
140
121
  };
122
+ readonly build: {
123
+ readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
124
+ readonly title: "Build";
125
+ readonly emoji: "🛠 ";
126
+ readonly hidden: true;
127
+ readonly semverBump: "none";
128
+ readonly changelog: {
129
+ readonly title: "Build";
130
+ readonly hidden: true;
131
+ };
132
+ };
141
133
  readonly release: {
142
134
  readonly description: "Publishing a commit containing a newly released version";
143
135
  readonly title: "Publish Release";
@@ -172,139 +164,7 @@ declare const DEFAULT_COMMIT_QUESTIONS: {
172
164
  readonly type: "select";
173
165
  readonly title: "Commit Type";
174
166
  readonly description: "Select the commit type that best describes your changes";
175
- readonly enum: {
176
- readonly chore: {
177
- readonly description: "Other changes that don't modify src or test files";
178
- readonly title: "Chore";
179
- readonly emoji: "⚙️ ";
180
- readonly semverBump: "patch";
181
- readonly changelog: {
182
- readonly title: "Miscellaneous";
183
- readonly hidden: false;
184
- };
185
- };
186
- readonly ci: {
187
- readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
188
- readonly title: "Continuous Integration";
189
- readonly emoji: "🧰 ";
190
- readonly semverBump: "patch";
191
- readonly changelog: {
192
- readonly title: "Continuous Integration";
193
- readonly hidden: false;
194
- };
195
- };
196
- readonly deps: {
197
- readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
198
- readonly title: "Dependencies";
199
- readonly emoji: "📦 ";
200
- readonly semverBump: "patch";
201
- readonly changelog: {
202
- readonly title: "Dependency Upgrades";
203
- readonly hidden: false;
204
- };
205
- };
206
- readonly docs: {
207
- readonly description: "A change that only includes documentation updates";
208
- readonly title: "Documentation";
209
- readonly emoji: "📜 ";
210
- readonly semverBump: "none";
211
- readonly changelog: {
212
- readonly title: "Documentation";
213
- readonly hidden: true;
214
- };
215
- };
216
- readonly feat: {
217
- readonly description: "A change that adds a new feature to the package";
218
- readonly title: "Feature";
219
- readonly emoji: "🔑 ";
220
- readonly semverBump: "minor";
221
- readonly changelog: {
222
- readonly title: "Features";
223
- readonly hidden: false;
224
- };
225
- };
226
- readonly fix: {
227
- readonly description: "A change that resolves an issue previously identified with the package";
228
- readonly title: "Bug Fix";
229
- readonly emoji: "🪲 ";
230
- readonly semverBump: "patch";
231
- readonly changelog: {
232
- readonly title: "Bug Fixes";
233
- readonly hidden: false;
234
- };
235
- };
236
- readonly perf: {
237
- readonly description: "A code change that improves performance";
238
- readonly title: "Performance Improvement";
239
- readonly emoji: "⏱️ ";
240
- readonly semverBump: "none";
241
- readonly changelog: {
242
- readonly title: "Performance Improvements";
243
- readonly hidden: false;
244
- };
245
- };
246
- readonly refactor: {
247
- readonly description: "A code change that neither fixes a bug nor adds a feature";
248
- readonly title: "Code Refactoring";
249
- readonly emoji: "🧪 ";
250
- readonly semverBump: "patch";
251
- readonly changelog: {
252
- readonly title: "Code Improvements";
253
- readonly hidden: false;
254
- };
255
- };
256
- readonly revert: {
257
- readonly description: "Revert a previously committed change";
258
- readonly title: "Revert";
259
- readonly emoji: "🗑️ ";
260
- readonly semverBump: "patch";
261
- readonly changelog: {
262
- readonly title: "Reverts";
263
- readonly hidden: false;
264
- };
265
- };
266
- readonly style: {
267
- readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
268
- readonly title: "Styling";
269
- readonly emoji: "💎 ";
270
- readonly semverBump: "minor";
271
- readonly changelog: {
272
- readonly title: "Styling";
273
- readonly hidden: false;
274
- };
275
- };
276
- readonly test: {
277
- readonly description: "Adding missing tests or correcting existing tests";
278
- readonly title: "Testing";
279
- readonly emoji: "🚨 ";
280
- readonly semverBump: "none";
281
- readonly changelog: {
282
- readonly title: "Testing";
283
- readonly hidden: true;
284
- };
285
- };
286
- readonly types: {
287
- readonly description: "Changes that affect the project's type definitions";
288
- readonly title: "Type Definition";
289
- readonly emoji: "📓 ";
290
- readonly semverBump: "minor";
291
- readonly changelog: {
292
- readonly title: "Type Definitions";
293
- readonly hidden: false;
294
- };
295
- };
296
- readonly release: {
297
- readonly description: "Publishing a commit containing a newly released version";
298
- readonly title: "Publish Release";
299
- readonly emoji: "🚀 ";
300
- readonly hidden: true;
301
- readonly semverBump: "none";
302
- readonly changelog: {
303
- readonly title: "Publish Release";
304
- readonly hidden: true;
305
- };
306
- };
307
- };
167
+ readonly enum: CommitTypesEnum<"chore" | "fix" | "feat" | "ci" | "refactor" | "style" | "perf" | "docs" | "test" | "deps" | "build" | "release">;
308
168
  readonly defaultValue: "chore";
309
169
  readonly maxLength: 20;
310
170
  readonly minLength: 3;
package/dist/types.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  DEFAULT_COMMIT_SETTINGS,
6
6
  DEFAULT_COMMIT_TYPES,
7
7
  RuleConfigSeverity
8
- } from "./chunk-WEKKNQBE.js";
8
+ } from "./chunk-TFEV2FZY.js";
9
9
  export {
10
10
  DEFAULT_COMMIT_MESSAGE_FORMAT,
11
11
  DEFAULT_COMMIT_PROMPT_MESSAGES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.102.0",
3
+ "version": "2.103.0",
4
4
  "type": "module",
5
5
  "description": "Tools for managing Git repositories within a Nx workspace.",
6
6
  "repository": {
@@ -1,18 +0,0 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
-
3
-
4
-
5
-
6
- var _chunkWZADZNEIcjs = require('./chunk-WZADZNEI.cjs');
7
-
8
- // src/commit/config.ts
9
- var DEFAULT_COMMIT_CONFIG = {
10
- settings: _chunkWZADZNEIcjs.DEFAULT_COMMIT_SETTINGS,
11
- messages: _chunkWZADZNEIcjs.DEFAULT_COMMIT_PROMPT_MESSAGES,
12
- questions: _chunkWZADZNEIcjs.DEFAULT_COMMIT_QUESTIONS,
13
- types: _chunkWZADZNEIcjs.DEFAULT_COMMIT_TYPES
14
- };
15
-
16
-
17
-
18
- exports.DEFAULT_COMMIT_CONFIG = DEFAULT_COMMIT_CONFIG;