@storm-software/git-tools 2.131.94 β†’ 2.131.97

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 CHANGED
@@ -27,7 +27,7 @@ This package is part of the <b>⚑Storm-Ops</b> monorepo. The Storm-Ops packages
27
27
 
28
28
  <h3 align="center">πŸ’» Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-2.131.92-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
30
+ [![Version](https://img.shields.io/badge/version-2.131.95-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
@@ -125,7 +125,7 @@ declare const config: {
125
125
  readonly chore: {
126
126
  readonly description: "Other changes that don't modify src or test files";
127
127
  readonly title: "Chore";
128
- readonly emoji: "βš™οΈ ";
128
+ readonly emoji: "\u2699\uFE0F ";
129
129
  readonly semverBump: "patch";
130
130
  readonly changelog: {
131
131
  readonly title: "Miscellaneous";
@@ -135,7 +135,7 @@ declare const config: {
135
135
  readonly fix: {
136
136
  readonly description: "A change that resolves an issue previously identified with the package";
137
137
  readonly title: "Bug Fix";
138
- readonly emoji: "πŸͺ² ";
138
+ readonly emoji: "\uD83E\uDEB2 ";
139
139
  readonly semverBump: "patch";
140
140
  readonly changelog: {
141
141
  readonly title: "Bug Fixes";
@@ -145,7 +145,7 @@ declare const config: {
145
145
  readonly feat: {
146
146
  readonly description: "A change that adds a new feature to the package";
147
147
  readonly title: "Feature";
148
- readonly emoji: "πŸ”‘ ";
148
+ readonly emoji: "\uD83D\uDD11 ";
149
149
  readonly semverBump: "minor";
150
150
  readonly changelog: {
151
151
  readonly title: "Features";
@@ -155,7 +155,7 @@ declare const config: {
155
155
  readonly ci: {
156
156
  readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
157
157
  readonly title: "Continuous Integration";
158
- readonly emoji: "🧰 ";
158
+ readonly emoji: "\uD83E\uDDF0 ";
159
159
  readonly semverBump: "patch";
160
160
  readonly changelog: {
161
161
  readonly title: "Continuous Integration";
@@ -165,7 +165,7 @@ declare const config: {
165
165
  readonly refactor: {
166
166
  readonly description: "A code change that neither fixes a bug nor adds a feature";
167
167
  readonly title: "Code Refactoring";
168
- readonly emoji: "πŸ§ͺ ";
168
+ readonly emoji: "\uD83E\uDDEA ";
169
169
  readonly semverBump: "patch";
170
170
  readonly changelog: {
171
171
  readonly title: "Source Code Improvements";
@@ -175,7 +175,7 @@ declare const config: {
175
175
  readonly style: {
176
176
  readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
177
177
  readonly title: "Style Improvements";
178
- readonly emoji: "πŸ’Ž ";
178
+ readonly emoji: "\uD83D\uDC8E ";
179
179
  readonly semverBump: "patch";
180
180
  readonly changelog: {
181
181
  readonly title: "Style Improvements";
@@ -185,7 +185,7 @@ declare const config: {
185
185
  readonly perf: {
186
186
  readonly description: "A code change that improves performance";
187
187
  readonly title: "Performance Improvement";
188
- readonly emoji: "⏱️ ";
188
+ readonly emoji: "\u23F1\uFE0F ";
189
189
  readonly semverBump: "patch";
190
190
  readonly changelog: {
191
191
  readonly title: "Performance Improvements";
@@ -195,7 +195,7 @@ declare const config: {
195
195
  readonly docs: {
196
196
  readonly description: "A change that only includes documentation updates";
197
197
  readonly title: "Documentation";
198
- readonly emoji: "πŸ“œ ";
198
+ readonly emoji: "\uD83D\uDCDC ";
199
199
  readonly semverBump: "none";
200
200
  readonly changelog: {
201
201
  readonly title: "Documentation";
@@ -205,7 +205,7 @@ declare const config: {
205
205
  readonly test: {
206
206
  readonly description: "Adding missing tests or correcting existing tests";
207
207
  readonly title: "Testing";
208
- readonly emoji: "🚨 ";
208
+ readonly emoji: "\uD83D\uDEA8 ";
209
209
  readonly semverBump: "none";
210
210
  readonly changelog: {
211
211
  readonly title: "Testing";
@@ -215,7 +215,7 @@ declare const config: {
215
215
  readonly deps: {
216
216
  readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
217
217
  readonly title: "Dependencies";
218
- readonly emoji: "πŸ“¦ ";
218
+ readonly emoji: "\uD83D\uDCE6 ";
219
219
  readonly hidden: true;
220
220
  readonly semverBump: "patch";
221
221
  readonly changelog: {
@@ -226,7 +226,7 @@ declare const config: {
226
226
  readonly build: {
227
227
  readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
228
228
  readonly title: "Build";
229
- readonly emoji: "πŸ›  ";
229
+ readonly emoji: "\uD83D\uDEE0 ";
230
230
  readonly hidden: true;
231
231
  readonly semverBump: "none";
232
232
  readonly changelog: {
@@ -237,7 +237,7 @@ declare const config: {
237
237
  readonly release: {
238
238
  readonly description: "Publishing a commit containing a newly released version";
239
239
  readonly title: "Publish Release";
240
- readonly emoji: "πŸš€ ";
240
+ readonly emoji: "\uD83D\uDE80 ";
241
241
  readonly hidden: true;
242
242
  readonly semverBump: "none";
243
243
  readonly changelog: {
@@ -125,7 +125,7 @@ declare const config: {
125
125
  readonly chore: {
126
126
  readonly description: "Other changes that don't modify src or test files";
127
127
  readonly title: "Chore";
128
- readonly emoji: "βš™οΈ ";
128
+ readonly emoji: "\u2699\uFE0F ";
129
129
  readonly semverBump: "patch";
130
130
  readonly changelog: {
131
131
  readonly title: "Miscellaneous";
@@ -135,7 +135,7 @@ declare const config: {
135
135
  readonly fix: {
136
136
  readonly description: "A change that resolves an issue previously identified with the package";
137
137
  readonly title: "Bug Fix";
138
- readonly emoji: "πŸͺ² ";
138
+ readonly emoji: "\uD83E\uDEB2 ";
139
139
  readonly semverBump: "patch";
140
140
  readonly changelog: {
141
141
  readonly title: "Bug Fixes";
@@ -145,7 +145,7 @@ declare const config: {
145
145
  readonly feat: {
146
146
  readonly description: "A change that adds a new feature to the package";
147
147
  readonly title: "Feature";
148
- readonly emoji: "πŸ”‘ ";
148
+ readonly emoji: "\uD83D\uDD11 ";
149
149
  readonly semverBump: "minor";
150
150
  readonly changelog: {
151
151
  readonly title: "Features";
@@ -155,7 +155,7 @@ declare const config: {
155
155
  readonly ci: {
156
156
  readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
157
157
  readonly title: "Continuous Integration";
158
- readonly emoji: "🧰 ";
158
+ readonly emoji: "\uD83E\uDDF0 ";
159
159
  readonly semverBump: "patch";
160
160
  readonly changelog: {
161
161
  readonly title: "Continuous Integration";
@@ -165,7 +165,7 @@ declare const config: {
165
165
  readonly refactor: {
166
166
  readonly description: "A code change that neither fixes a bug nor adds a feature";
167
167
  readonly title: "Code Refactoring";
168
- readonly emoji: "πŸ§ͺ ";
168
+ readonly emoji: "\uD83E\uDDEA ";
169
169
  readonly semverBump: "patch";
170
170
  readonly changelog: {
171
171
  readonly title: "Source Code Improvements";
@@ -175,7 +175,7 @@ declare const config: {
175
175
  readonly style: {
176
176
  readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
177
177
  readonly title: "Style Improvements";
178
- readonly emoji: "πŸ’Ž ";
178
+ readonly emoji: "\uD83D\uDC8E ";
179
179
  readonly semverBump: "patch";
180
180
  readonly changelog: {
181
181
  readonly title: "Style Improvements";
@@ -185,7 +185,7 @@ declare const config: {
185
185
  readonly perf: {
186
186
  readonly description: "A code change that improves performance";
187
187
  readonly title: "Performance Improvement";
188
- readonly emoji: "⏱️ ";
188
+ readonly emoji: "\u23F1\uFE0F ";
189
189
  readonly semverBump: "patch";
190
190
  readonly changelog: {
191
191
  readonly title: "Performance Improvements";
@@ -195,7 +195,7 @@ declare const config: {
195
195
  readonly docs: {
196
196
  readonly description: "A change that only includes documentation updates";
197
197
  readonly title: "Documentation";
198
- readonly emoji: "πŸ“œ ";
198
+ readonly emoji: "\uD83D\uDCDC ";
199
199
  readonly semverBump: "none";
200
200
  readonly changelog: {
201
201
  readonly title: "Documentation";
@@ -205,7 +205,7 @@ declare const config: {
205
205
  readonly test: {
206
206
  readonly description: "Adding missing tests or correcting existing tests";
207
207
  readonly title: "Testing";
208
- readonly emoji: "🚨 ";
208
+ readonly emoji: "\uD83D\uDEA8 ";
209
209
  readonly semverBump: "none";
210
210
  readonly changelog: {
211
211
  readonly title: "Testing";
@@ -215,7 +215,7 @@ declare const config: {
215
215
  readonly deps: {
216
216
  readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
217
217
  readonly title: "Dependencies";
218
- readonly emoji: "πŸ“¦ ";
218
+ readonly emoji: "\uD83D\uDCE6 ";
219
219
  readonly hidden: true;
220
220
  readonly semverBump: "patch";
221
221
  readonly changelog: {
@@ -226,7 +226,7 @@ declare const config: {
226
226
  readonly build: {
227
227
  readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
228
228
  readonly title: "Build";
229
- readonly emoji: "πŸ›  ";
229
+ readonly emoji: "\uD83D\uDEE0 ";
230
230
  readonly hidden: true;
231
231
  readonly semverBump: "none";
232
232
  readonly changelog: {
@@ -237,7 +237,7 @@ declare const config: {
237
237
  readonly release: {
238
238
  readonly description: "Publishing a commit containing a newly released version";
239
239
  readonly title: "Publish Release";
240
- readonly emoji: "πŸš€ ";
240
+ readonly emoji: "\uD83D\uDE80 ";
241
241
  readonly hidden: true;
242
242
  readonly semverBump: "none";
243
243
  readonly changelog: {
@@ -149,7 +149,7 @@ declare const config: {
149
149
  readonly chore: {
150
150
  readonly description: "Other changes that don't modify src or test files";
151
151
  readonly title: "Chore";
152
- readonly emoji: "βš™οΈ ";
152
+ readonly emoji: "\u2699\uFE0F ";
153
153
  readonly semverBump: "patch";
154
154
  readonly changelog: {
155
155
  readonly title: "Miscellaneous";
@@ -159,7 +159,7 @@ declare const config: {
159
159
  readonly fix: {
160
160
  readonly description: "A change that resolves an issue previously identified with the package";
161
161
  readonly title: "Bug Fix";
162
- readonly emoji: "πŸͺ² ";
162
+ readonly emoji: "\uD83E\uDEB2 ";
163
163
  readonly semverBump: "patch";
164
164
  readonly changelog: {
165
165
  readonly title: "Bug Fixes";
@@ -169,7 +169,7 @@ declare const config: {
169
169
  readonly feat: {
170
170
  readonly description: "A change that adds a new feature to the package";
171
171
  readonly title: "Feature";
172
- readonly emoji: "πŸ”‘ ";
172
+ readonly emoji: "\uD83D\uDD11 ";
173
173
  readonly semverBump: "minor";
174
174
  readonly changelog: {
175
175
  readonly title: "Features";
@@ -179,7 +179,7 @@ declare const config: {
179
179
  readonly ci: {
180
180
  readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
181
181
  readonly title: "Continuous Integration";
182
- readonly emoji: "🧰 ";
182
+ readonly emoji: "\uD83E\uDDF0 ";
183
183
  readonly semverBump: "patch";
184
184
  readonly changelog: {
185
185
  readonly title: "Continuous Integration";
@@ -189,7 +189,7 @@ declare const config: {
189
189
  readonly refactor: {
190
190
  readonly description: "A code change that neither fixes a bug nor adds a feature";
191
191
  readonly title: "Code Refactoring";
192
- readonly emoji: "πŸ§ͺ ";
192
+ readonly emoji: "\uD83E\uDDEA ";
193
193
  readonly semverBump: "patch";
194
194
  readonly changelog: {
195
195
  readonly title: "Source Code Improvements";
@@ -199,7 +199,7 @@ declare const config: {
199
199
  readonly style: {
200
200
  readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
201
201
  readonly title: "Style Improvements";
202
- readonly emoji: "πŸ’Ž ";
202
+ readonly emoji: "\uD83D\uDC8E ";
203
203
  readonly semverBump: "patch";
204
204
  readonly changelog: {
205
205
  readonly title: "Style Improvements";
@@ -209,7 +209,7 @@ declare const config: {
209
209
  readonly perf: {
210
210
  readonly description: "A code change that improves performance";
211
211
  readonly title: "Performance Improvement";
212
- readonly emoji: "⏱️ ";
212
+ readonly emoji: "\u23F1\uFE0F ";
213
213
  readonly semverBump: "patch";
214
214
  readonly changelog: {
215
215
  readonly title: "Performance Improvements";
@@ -219,7 +219,7 @@ declare const config: {
219
219
  readonly docs: {
220
220
  readonly description: "A change that only includes documentation updates";
221
221
  readonly title: "Documentation";
222
- readonly emoji: "πŸ“œ ";
222
+ readonly emoji: "\uD83D\uDCDC ";
223
223
  readonly semverBump: "none";
224
224
  readonly changelog: {
225
225
  readonly title: "Documentation";
@@ -229,7 +229,7 @@ declare const config: {
229
229
  readonly test: {
230
230
  readonly description: "Adding missing tests or correcting existing tests";
231
231
  readonly title: "Testing";
232
- readonly emoji: "🚨 ";
232
+ readonly emoji: "\uD83D\uDEA8 ";
233
233
  readonly semverBump: "none";
234
234
  readonly changelog: {
235
235
  readonly title: "Testing";
@@ -239,7 +239,7 @@ declare const config: {
239
239
  readonly deps: {
240
240
  readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
241
241
  readonly title: "Dependencies";
242
- readonly emoji: "πŸ“¦ ";
242
+ readonly emoji: "\uD83D\uDCE6 ";
243
243
  readonly hidden: true;
244
244
  readonly semverBump: "patch";
245
245
  readonly changelog: {
@@ -250,7 +250,7 @@ declare const config: {
250
250
  readonly build: {
251
251
  readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
252
252
  readonly title: "Build";
253
- readonly emoji: "πŸ›  ";
253
+ readonly emoji: "\uD83D\uDEE0 ";
254
254
  readonly hidden: true;
255
255
  readonly semverBump: "none";
256
256
  readonly changelog: {
@@ -261,7 +261,7 @@ declare const config: {
261
261
  readonly release: {
262
262
  readonly description: "Publishing a commit containing a newly released version";
263
263
  readonly title: "Publish Release";
264
- readonly emoji: "πŸš€ ";
264
+ readonly emoji: "\uD83D\uDE80 ";
265
265
  readonly hidden: true;
266
266
  readonly semverBump: "none";
267
267
  readonly changelog: {
@@ -149,7 +149,7 @@ declare const config: {
149
149
  readonly chore: {
150
150
  readonly description: "Other changes that don't modify src or test files";
151
151
  readonly title: "Chore";
152
- readonly emoji: "βš™οΈ ";
152
+ readonly emoji: "\u2699\uFE0F ";
153
153
  readonly semverBump: "patch";
154
154
  readonly changelog: {
155
155
  readonly title: "Miscellaneous";
@@ -159,7 +159,7 @@ declare const config: {
159
159
  readonly fix: {
160
160
  readonly description: "A change that resolves an issue previously identified with the package";
161
161
  readonly title: "Bug Fix";
162
- readonly emoji: "πŸͺ² ";
162
+ readonly emoji: "\uD83E\uDEB2 ";
163
163
  readonly semverBump: "patch";
164
164
  readonly changelog: {
165
165
  readonly title: "Bug Fixes";
@@ -169,7 +169,7 @@ declare const config: {
169
169
  readonly feat: {
170
170
  readonly description: "A change that adds a new feature to the package";
171
171
  readonly title: "Feature";
172
- readonly emoji: "πŸ”‘ ";
172
+ readonly emoji: "\uD83D\uDD11 ";
173
173
  readonly semverBump: "minor";
174
174
  readonly changelog: {
175
175
  readonly title: "Features";
@@ -179,7 +179,7 @@ declare const config: {
179
179
  readonly ci: {
180
180
  readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
181
181
  readonly title: "Continuous Integration";
182
- readonly emoji: "🧰 ";
182
+ readonly emoji: "\uD83E\uDDF0 ";
183
183
  readonly semverBump: "patch";
184
184
  readonly changelog: {
185
185
  readonly title: "Continuous Integration";
@@ -189,7 +189,7 @@ declare const config: {
189
189
  readonly refactor: {
190
190
  readonly description: "A code change that neither fixes a bug nor adds a feature";
191
191
  readonly title: "Code Refactoring";
192
- readonly emoji: "πŸ§ͺ ";
192
+ readonly emoji: "\uD83E\uDDEA ";
193
193
  readonly semverBump: "patch";
194
194
  readonly changelog: {
195
195
  readonly title: "Source Code Improvements";
@@ -199,7 +199,7 @@ declare const config: {
199
199
  readonly style: {
200
200
  readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
201
201
  readonly title: "Style Improvements";
202
- readonly emoji: "πŸ’Ž ";
202
+ readonly emoji: "\uD83D\uDC8E ";
203
203
  readonly semverBump: "patch";
204
204
  readonly changelog: {
205
205
  readonly title: "Style Improvements";
@@ -209,7 +209,7 @@ declare const config: {
209
209
  readonly perf: {
210
210
  readonly description: "A code change that improves performance";
211
211
  readonly title: "Performance Improvement";
212
- readonly emoji: "⏱️ ";
212
+ readonly emoji: "\u23F1\uFE0F ";
213
213
  readonly semverBump: "patch";
214
214
  readonly changelog: {
215
215
  readonly title: "Performance Improvements";
@@ -219,7 +219,7 @@ declare const config: {
219
219
  readonly docs: {
220
220
  readonly description: "A change that only includes documentation updates";
221
221
  readonly title: "Documentation";
222
- readonly emoji: "πŸ“œ ";
222
+ readonly emoji: "\uD83D\uDCDC ";
223
223
  readonly semverBump: "none";
224
224
  readonly changelog: {
225
225
  readonly title: "Documentation";
@@ -229,7 +229,7 @@ declare const config: {
229
229
  readonly test: {
230
230
  readonly description: "Adding missing tests or correcting existing tests";
231
231
  readonly title: "Testing";
232
- readonly emoji: "🚨 ";
232
+ readonly emoji: "\uD83D\uDEA8 ";
233
233
  readonly semverBump: "none";
234
234
  readonly changelog: {
235
235
  readonly title: "Testing";
@@ -239,7 +239,7 @@ declare const config: {
239
239
  readonly deps: {
240
240
  readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
241
241
  readonly title: "Dependencies";
242
- readonly emoji: "πŸ“¦ ";
242
+ readonly emoji: "\uD83D\uDCE6 ";
243
243
  readonly hidden: true;
244
244
  readonly semverBump: "patch";
245
245
  readonly changelog: {
@@ -250,7 +250,7 @@ declare const config: {
250
250
  readonly build: {
251
251
  readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
252
252
  readonly title: "Build";
253
- readonly emoji: "πŸ›  ";
253
+ readonly emoji: "\uD83D\uDEE0 ";
254
254
  readonly hidden: true;
255
255
  readonly semverBump: "none";
256
256
  readonly changelog: {
@@ -261,7 +261,7 @@ declare const config: {
261
261
  readonly release: {
262
262
  readonly description: "Publishing a commit containing a newly released version";
263
263
  readonly title: "Publish Release";
264
- readonly emoji: "πŸš€ ";
264
+ readonly emoji: "\uD83D\uDE80 ";
265
265
  readonly hidden: true;
266
266
  readonly semverBump: "none";
267
267
  readonly changelog: {
@@ -9,7 +9,7 @@ declare const config: {
9
9
  "footer-max-line-length": (string | number)[];
10
10
  "header-max-length": (string | number)[];
11
11
  "header-trim": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
12
- "subject-case": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity | string[])[];
12
+ "subject-case": (string | string[] | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
13
13
  "subject-empty": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
14
14
  "subject-full-stop": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
15
15
  "subject-max-length": (string | number)[];
@@ -9,7 +9,7 @@ declare const config: {
9
9
  "footer-max-line-length": (string | number)[];
10
10
  "header-max-length": (string | number)[];
11
11
  "header-trim": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
12
- "subject-case": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity | string[])[];
12
+ "subject-case": (string | string[] | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
13
13
  "subject-empty": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
14
14
  "subject-full-stop": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
15
15
  "subject-max-length": (string | number)[];
@@ -9,7 +9,7 @@ declare const config: {
9
9
  "footer-max-line-length": (string | number)[];
10
10
  "header-max-length": (string | number)[];
11
11
  "header-trim": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
12
- "subject-case": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity | string[])[];
12
+ "subject-case": (string | string[] | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
13
13
  "subject-empty": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
14
14
  "subject-full-stop": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
15
15
  "subject-max-length": (string | number)[];
@@ -19,7 +19,7 @@ declare const config: {
19
19
  "type-enum": [conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity, conventional_changelog_storm_software_types_commitlint.RuleConfigCondition, string[]];
20
20
  "type-max-length": (string | number)[];
21
21
  "type-min-length": (string | number)[];
22
- "scope-case": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity | string[])[];
22
+ "scope-case": (string | string[] | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
23
23
  "scope-empty": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
24
24
  };
25
25
  settings: {
@@ -9,7 +9,7 @@ declare const config: {
9
9
  "footer-max-line-length": (string | number)[];
10
10
  "header-max-length": (string | number)[];
11
11
  "header-trim": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
12
- "subject-case": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity | string[])[];
12
+ "subject-case": (string | string[] | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
13
13
  "subject-empty": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
14
14
  "subject-full-stop": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
15
15
  "subject-max-length": (string | number)[];
@@ -19,7 +19,7 @@ declare const config: {
19
19
  "type-enum": [conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity, conventional_changelog_storm_software_types_commitlint.RuleConfigCondition, string[]];
20
20
  "type-max-length": (string | number)[];
21
21
  "type-min-length": (string | number)[];
22
- "scope-case": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity | string[])[];
22
+ "scope-case": (string | string[] | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
23
23
  "scope-empty": (string | conventional_changelog_storm_software_types_commitlint.RuleConfigSeverity)[];
24
24
  };
25
25
  settings: {
@@ -73,7 +73,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
73
73
  readonly chore: {
74
74
  readonly description: "Other changes that don't modify src or test files";
75
75
  readonly title: "Chore";
76
- readonly emoji: "βš™οΈ ";
76
+ readonly emoji: "\u2699\uFE0F ";
77
77
  readonly semverBump: "patch";
78
78
  readonly changelog: {
79
79
  readonly title: "Miscellaneous";
@@ -83,7 +83,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
83
83
  readonly fix: {
84
84
  readonly description: "A change that resolves an issue previously identified with the package";
85
85
  readonly title: "Bug Fix";
86
- readonly emoji: "πŸͺ² ";
86
+ readonly emoji: "\uD83E\uDEB2 ";
87
87
  readonly semverBump: "patch";
88
88
  readonly changelog: {
89
89
  readonly title: "Bug Fixes";
@@ -93,7 +93,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
93
93
  readonly feat: {
94
94
  readonly description: "A change that adds a new feature to the package";
95
95
  readonly title: "Feature";
96
- readonly emoji: "πŸ”‘ ";
96
+ readonly emoji: "\uD83D\uDD11 ";
97
97
  readonly semverBump: "minor";
98
98
  readonly changelog: {
99
99
  readonly title: "Features";
@@ -103,7 +103,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
103
103
  readonly ci: {
104
104
  readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
105
105
  readonly title: "Continuous Integration";
106
- readonly emoji: "🧰 ";
106
+ readonly emoji: "\uD83E\uDDF0 ";
107
107
  readonly semverBump: "patch";
108
108
  readonly changelog: {
109
109
  readonly title: "Continuous Integration";
@@ -113,7 +113,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
113
113
  readonly refactor: {
114
114
  readonly description: "A code change that neither fixes a bug nor adds a feature";
115
115
  readonly title: "Code Refactoring";
116
- readonly emoji: "πŸ§ͺ ";
116
+ readonly emoji: "\uD83E\uDDEA ";
117
117
  readonly semverBump: "patch";
118
118
  readonly changelog: {
119
119
  readonly title: "Source Code Improvements";
@@ -123,7 +123,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
123
123
  readonly style: {
124
124
  readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
125
125
  readonly title: "Style Improvements";
126
- readonly emoji: "πŸ’Ž ";
126
+ readonly emoji: "\uD83D\uDC8E ";
127
127
  readonly semverBump: "patch";
128
128
  readonly changelog: {
129
129
  readonly title: "Style Improvements";
@@ -133,7 +133,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
133
133
  readonly perf: {
134
134
  readonly description: "A code change that improves performance";
135
135
  readonly title: "Performance Improvement";
136
- readonly emoji: "⏱️ ";
136
+ readonly emoji: "\u23F1\uFE0F ";
137
137
  readonly semverBump: "patch";
138
138
  readonly changelog: {
139
139
  readonly title: "Performance Improvements";
@@ -143,7 +143,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
143
143
  readonly docs: {
144
144
  readonly description: "A change that only includes documentation updates";
145
145
  readonly title: "Documentation";
146
- readonly emoji: "πŸ“œ ";
146
+ readonly emoji: "\uD83D\uDCDC ";
147
147
  readonly semverBump: "none";
148
148
  readonly changelog: {
149
149
  readonly title: "Documentation";
@@ -153,7 +153,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
153
153
  readonly test: {
154
154
  readonly description: "Adding missing tests or correcting existing tests";
155
155
  readonly title: "Testing";
156
- readonly emoji: "🚨 ";
156
+ readonly emoji: "\uD83D\uDEA8 ";
157
157
  readonly semverBump: "none";
158
158
  readonly changelog: {
159
159
  readonly title: "Testing";
@@ -163,7 +163,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
163
163
  readonly deps: {
164
164
  readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
165
165
  readonly title: "Dependencies";
166
- readonly emoji: "πŸ“¦ ";
166
+ readonly emoji: "\uD83D\uDCE6 ";
167
167
  readonly hidden: true;
168
168
  readonly semverBump: "patch";
169
169
  readonly changelog: {
@@ -174,7 +174,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
174
174
  readonly build: {
175
175
  readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
176
176
  readonly title: "Build";
177
- readonly emoji: "πŸ›  ";
177
+ readonly emoji: "\uD83D\uDEE0 ";
178
178
  readonly hidden: true;
179
179
  readonly semverBump: "none";
180
180
  readonly changelog: {
@@ -185,7 +185,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
185
185
  readonly release: {
186
186
  readonly description: "Publishing a commit containing a newly released version";
187
187
  readonly title: "Publish Release";
188
- readonly emoji: "πŸš€ ";
188
+ readonly emoji: "\uD83D\uDE80 ";
189
189
  readonly hidden: true;
190
190
  readonly semverBump: "none";
191
191
  readonly changelog: {
@@ -73,7 +73,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
73
73
  readonly chore: {
74
74
  readonly description: "Other changes that don't modify src or test files";
75
75
  readonly title: "Chore";
76
- readonly emoji: "βš™οΈ ";
76
+ readonly emoji: "\u2699\uFE0F ";
77
77
  readonly semverBump: "patch";
78
78
  readonly changelog: {
79
79
  readonly title: "Miscellaneous";
@@ -83,7 +83,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
83
83
  readonly fix: {
84
84
  readonly description: "A change that resolves an issue previously identified with the package";
85
85
  readonly title: "Bug Fix";
86
- readonly emoji: "πŸͺ² ";
86
+ readonly emoji: "\uD83E\uDEB2 ";
87
87
  readonly semverBump: "patch";
88
88
  readonly changelog: {
89
89
  readonly title: "Bug Fixes";
@@ -93,7 +93,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
93
93
  readonly feat: {
94
94
  readonly description: "A change that adds a new feature to the package";
95
95
  readonly title: "Feature";
96
- readonly emoji: "πŸ”‘ ";
96
+ readonly emoji: "\uD83D\uDD11 ";
97
97
  readonly semverBump: "minor";
98
98
  readonly changelog: {
99
99
  readonly title: "Features";
@@ -103,7 +103,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
103
103
  readonly ci: {
104
104
  readonly description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)";
105
105
  readonly title: "Continuous Integration";
106
- readonly emoji: "🧰 ";
106
+ readonly emoji: "\uD83E\uDDF0 ";
107
107
  readonly semverBump: "patch";
108
108
  readonly changelog: {
109
109
  readonly title: "Continuous Integration";
@@ -113,7 +113,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
113
113
  readonly refactor: {
114
114
  readonly description: "A code change that neither fixes a bug nor adds a feature";
115
115
  readonly title: "Code Refactoring";
116
- readonly emoji: "πŸ§ͺ ";
116
+ readonly emoji: "\uD83E\uDDEA ";
117
117
  readonly semverBump: "patch";
118
118
  readonly changelog: {
119
119
  readonly title: "Source Code Improvements";
@@ -123,7 +123,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
123
123
  readonly style: {
124
124
  readonly description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)";
125
125
  readonly title: "Style Improvements";
126
- readonly emoji: "πŸ’Ž ";
126
+ readonly emoji: "\uD83D\uDC8E ";
127
127
  readonly semverBump: "patch";
128
128
  readonly changelog: {
129
129
  readonly title: "Style Improvements";
@@ -133,7 +133,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
133
133
  readonly perf: {
134
134
  readonly description: "A code change that improves performance";
135
135
  readonly title: "Performance Improvement";
136
- readonly emoji: "⏱️ ";
136
+ readonly emoji: "\u23F1\uFE0F ";
137
137
  readonly semverBump: "patch";
138
138
  readonly changelog: {
139
139
  readonly title: "Performance Improvements";
@@ -143,7 +143,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
143
143
  readonly docs: {
144
144
  readonly description: "A change that only includes documentation updates";
145
145
  readonly title: "Documentation";
146
- readonly emoji: "πŸ“œ ";
146
+ readonly emoji: "\uD83D\uDCDC ";
147
147
  readonly semverBump: "none";
148
148
  readonly changelog: {
149
149
  readonly title: "Documentation";
@@ -153,7 +153,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
153
153
  readonly test: {
154
154
  readonly description: "Adding missing tests or correcting existing tests";
155
155
  readonly title: "Testing";
156
- readonly emoji: "🚨 ";
156
+ readonly emoji: "\uD83D\uDEA8 ";
157
157
  readonly semverBump: "none";
158
158
  readonly changelog: {
159
159
  readonly title: "Testing";
@@ -163,7 +163,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
163
163
  readonly deps: {
164
164
  readonly description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies";
165
165
  readonly title: "Dependencies";
166
- readonly emoji: "πŸ“¦ ";
166
+ readonly emoji: "\uD83D\uDCE6 ";
167
167
  readonly hidden: true;
168
168
  readonly semverBump: "patch";
169
169
  readonly changelog: {
@@ -174,7 +174,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
174
174
  readonly build: {
175
175
  readonly description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)";
176
176
  readonly title: "Build";
177
- readonly emoji: "πŸ›  ";
177
+ readonly emoji: "\uD83D\uDEE0 ";
178
178
  readonly hidden: true;
179
179
  readonly semverBump: "none";
180
180
  readonly changelog: {
@@ -185,7 +185,7 @@ declare const DEFAULT_CONVENTIONAL_COMMITS_CONFIG: {
185
185
  readonly release: {
186
186
  readonly description: "Publishing a commit containing a newly released version";
187
187
  readonly title: "Publish Release";
188
- readonly emoji: "πŸš€ ";
188
+ readonly emoji: "\uD83D\uDE80 ";
189
189
  readonly hidden: true;
190
190
  readonly semverBump: "none";
191
191
  readonly changelog: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.131.94",
3
+ "version": "2.131.97",
4
4
  "private": false,
5
5
  "description": "Tools for managing Git repositories within a Nx workspace.",
6
6
  "keywords": [
@@ -190,8 +190,8 @@
190
190
  "@inquirer/prompts": "^8.5.2",
191
191
  "@nx/devkit": "23.0.1",
192
192
  "@nx/js": "23.0.1",
193
- "@storm-software/config": "^1.138.23",
194
- "@storm-software/config-tools": "^1.190.86",
193
+ "@storm-software/config": "^1.138.26",
194
+ "@storm-software/config-tools": "^1.190.89",
195
195
  "@textlint/ast-node-types": "14.4.2",
196
196
  "@textlint/markdown-to-ast": "14.4.2",
197
197
  "anchor-markdown-header": "0.7.0",
@@ -199,7 +199,7 @@
199
199
  "axios": "1.8.2",
200
200
  "chalk": "^4.1.2",
201
201
  "conventional-changelog-conventionalcommits": "^9.3.1",
202
- "conventional-changelog-storm-software": "^0.3.247",
202
+ "conventional-changelog-storm-software": "^0.3.250",
203
203
  "htmlparser2": "10.0.0",
204
204
  "jsonc-parser": "3.2.1",
205
205
  "nanoclone": "^1.0.2",
@@ -216,7 +216,7 @@
216
216
  "zod": "^4.4.3"
217
217
  },
218
218
  "devDependencies": {
219
- "@storm-software/package-constants": "^0.1.99",
219
+ "@storm-software/package-constants": "^0.1.102",
220
220
  "@types/node": "^25.9.4",
221
221
  "commander": "^12.1.0",
222
222
  "conventional-commits-parser": "^6.4.0",
@@ -225,5 +225,5 @@
225
225
  },
226
226
  "peerDependencies": { "zod": ">=4.0.0" },
227
227
  "publishConfig": { "access": "public" },
228
- "gitHead": "3ad8a54174ca52494f026de95ccb5cf36416dbfb"
228
+ "gitHead": "14f9267ee6222b480c883f16346f763ca0ea21d0"
229
229
  }