@storm-software/git-tools 2.27.0 → 2.29.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/CHANGELOG.md +164 -484
- package/README.md +56 -21
- package/bin/git.js +16 -6
- package/commitlint/commitlint.config.cjs +3 -2
- package/package.json +1 -1
- package/src/cli/index.js +16 -6
- package/src/commit/config.js +16 -6
- package/src/commit/index.js +16 -6
- package/src/commitizen/index.js +16 -6
- package/src/commitlint/config.js +97 -1
- package/src/index.js +115 -9
- package/src/release/changelog-renderer.js +4 -4
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<b>
|
|
11
11
|
<a href="https://stormsoftware.com" target="_blank">Website</a> •
|
|
12
12
|
<a href="https://github.com/storm-software/storm-ops" target="_blank">GitHub</a> •
|
|
13
|
-
<a href="https://discord.gg/MQ6YVzakM5">Discord</a> •
|
|
13
|
+
<a href="https://discord.gg/MQ6YVzakM5">Discord</a> • <a href="https://stormstack.github.io/stormstack/" target="_blank">Docs</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> •
|
|
14
14
|
<a href="https://github.com/storm-software/storm-ops/issues/new?assignees=&labels=bug&template=bug-report.yml&title=Bug Report%3A+">Report a Bug</a>
|
|
15
15
|
</b>
|
|
16
16
|
</div>
|
|
@@ -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)
|
|
@@ -53,7 +54,6 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
53
54
|
- [Changelog](#changelog)
|
|
54
55
|
- [Contributing](#contributing)
|
|
55
56
|
- [Contributors](#contributors)
|
|
56
|
-
- [💻 Visit stormsoftware.com to stay up to date with this developer](#-visit-stormsoftwarecom-to-stay-up-to-date-with-this-developer)
|
|
57
57
|
|
|
58
58
|
<!-- END doctoc -->
|
|
59
59
|
|
|
@@ -117,17 +117,25 @@ Run `nx test git-tools` to execute the unit tests via [Jest](https://jestjs.io).
|
|
|
117
117
|
|
|
118
118
|
## Storm Workspaces
|
|
119
119
|
|
|
120
|
-
Storm workspaces are built using
|
|
120
|
+
Storm workspaces are built using
|
|
121
|
+
<a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools
|
|
122
|
+
for monorepos, which helps you develop like Google, Facebook, and Microsoft.
|
|
123
|
+
Building on top of Nx, the Open System provides a set of tools and patterns that
|
|
124
|
+
help you scale your monorepo to many teams while keeping the codebase
|
|
125
|
+
maintainable.
|
|
121
126
|
|
|
122
127
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
123
128
|
<br />
|
|
124
129
|
|
|
125
130
|
## Roadmap
|
|
126
131
|
|
|
127
|
-
See the [open issues](https://github.com/storm-software/storm-ops/issues) for a
|
|
132
|
+
See the [open issues](https://github.com/storm-software/storm-ops/issues) for a
|
|
133
|
+
list of proposed features (and known issues).
|
|
128
134
|
|
|
129
|
-
- [Top Feature Requests](https://github.com/storm-software/storm-ops/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc)
|
|
130
|
-
|
|
135
|
+
- [Top Feature Requests](https://github.com/storm-software/storm-ops/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc)
|
|
136
|
+
(Add your votes using the 👍 reaction)
|
|
137
|
+
- [Top Bugs](https://github.com/storm-software/storm-ops/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc)
|
|
138
|
+
(Add your votes using the 👍 reaction)
|
|
131
139
|
- [Newest Bugs](https://github.com/storm-software/storm-ops/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
|
|
132
140
|
|
|
133
141
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
@@ -146,7 +154,8 @@ Reach out to the maintainer at one of the following places:
|
|
|
146
154
|
|
|
147
155
|
## License
|
|
148
156
|
|
|
149
|
-
This project is licensed under the **Apache License 2.0**. Feel free to edit and
|
|
157
|
+
This project is licensed under the **Apache License 2.0**. Feel free to edit and
|
|
158
|
+
distribute this template as you like.
|
|
150
159
|
|
|
151
160
|
See [LICENSE](LICENSE) for more information.
|
|
152
161
|
|
|
@@ -155,32 +164,42 @@ See [LICENSE](LICENSE) for more information.
|
|
|
155
164
|
|
|
156
165
|
## Changelog
|
|
157
166
|
|
|
158
|
-
This project adheres to
|
|
167
|
+
This project adheres to
|
|
168
|
+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). Every release, along
|
|
169
|
+
with the migration instructions, is documented in the [CHANGELOG](CHANGELOG.md)
|
|
170
|
+
file
|
|
159
171
|
|
|
160
172
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
161
173
|
<br />
|
|
162
174
|
|
|
163
175
|
## Contributing
|
|
164
176
|
|
|
165
|
-
First off, thanks for taking the time to contribute! Contributions are what
|
|
177
|
+
First off, thanks for taking the time to contribute! Contributions are what
|
|
178
|
+
makes the open-source community such an amazing place to learn, inspire, and
|
|
179
|
+
create. Any contributions you make will benefit everybody else and are **greatly
|
|
180
|
+
appreciated**.
|
|
166
181
|
|
|
167
182
|
Please try to create bug reports that are:
|
|
168
183
|
|
|
169
184
|
- _Reproducible._ Include steps to reproduce the problem.
|
|
170
|
-
- _Specific._ Include as much detail as possible: which version, what
|
|
185
|
+
- _Specific._ Include as much detail as possible: which version, what
|
|
186
|
+
environment, etc.
|
|
171
187
|
- _Unique._ Do not duplicate existing opened issues.
|
|
172
188
|
- _Scoped to a Single Bug._ One bug per report.
|
|
173
189
|
|
|
174
190
|
Please adhere to this project's [code of conduct](.github/CODE_OF_CONDUCT.md).
|
|
175
191
|
|
|
176
|
-
You can use
|
|
192
|
+
You can use
|
|
193
|
+
[markdownlint-cli](https://github.com/storm-software/storm-ops/markdownlint-cli)
|
|
194
|
+
to check for common markdown style inconsistency.
|
|
177
195
|
|
|
178
196
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
179
197
|
<br />
|
|
180
198
|
|
|
181
199
|
## Contributors
|
|
182
200
|
|
|
183
|
-
Thanks goes to these wonderful people
|
|
201
|
+
Thanks goes to these wonderful people
|
|
202
|
+
([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
184
203
|
|
|
185
204
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
186
205
|
|
|
@@ -205,7 +224,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
205
224
|
|
|
206
225
|
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
207
226
|
|
|
208
|
-
This project follows the
|
|
227
|
+
This project follows the
|
|
228
|
+
[all-contributors](https://github.com/all-contributors/all-contributors)
|
|
229
|
+
specification. Contributions of any kind welcome!
|
|
209
230
|
|
|
210
231
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
211
232
|
<br />
|
|
@@ -219,9 +240,7 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
219
240
|
<br />
|
|
220
241
|
|
|
221
242
|
<div align="center">
|
|
222
|
-
<
|
|
223
|
-
<a href="https://stormsoftware.com" target="_blank">Website</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> • <a href="https://discord.gg/MQ6YVzakM5">Discord</a> • <a href="https://linkedin.com/in/pat-sullivan-dev" target="_blank">LinkedIn</a> • <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> • <a href="https://github.com/storm-software" target="_blank">GitHub</a> • <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
|
|
224
|
-
</b>
|
|
243
|
+
<a href="https://stormsoftware.com" target="_blank">Website</a> • <a href="https://stormsoftware.com/contact" target="_blank">Contact</a> • <a href="https://linkedin.com/in/patrick-sullivan-865526b0" target="_blank">LinkedIn</a> • <a href="https://medium.com/@pat.joseph.sullivan" target="_blank">Medium</a> • <a href="https://github.com/storm-software" target="_blank">GitHub</a> • <a href="https://keybase.io/sullivanp" target="_blank">OpenPGP Key</a>
|
|
225
244
|
</div>
|
|
226
245
|
|
|
227
246
|
<div align="center">
|
|
@@ -229,18 +248,34 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
229
248
|
</div>
|
|
230
249
|
<br />
|
|
231
250
|
|
|
232
|
-
Storm Software is an open source software development organization and creator
|
|
251
|
+
Storm Software is an open source software development organization and creator
|
|
252
|
+
of Acidic, StormStack and StormCloud.
|
|
253
|
+
|
|
254
|
+
Our mission is to make software development more accessible. Our ideal future is
|
|
255
|
+
one where anyone can create software without years of prior development
|
|
256
|
+
experience serving as a barrier to entry. We hope to achieve this via LLMs,
|
|
257
|
+
Generative AI, and intuitive, high-level data modeling/programming languages.
|
|
233
258
|
|
|
234
|
-
|
|
259
|
+
Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team,
|
|
260
|
+
receive release notifications, ask questions, and get involved.
|
|
235
261
|
|
|
236
|
-
If this sounds interesting, and you would like to help us in creating the next
|
|
262
|
+
If this sounds interesting, and you would like to help us in creating the next
|
|
263
|
+
generation of development tools, please reach out on our
|
|
264
|
+
[website](https://stormsoftware.com/contact) or join our
|
|
265
|
+
[Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA)
|
|
266
|
+
channel!
|
|
237
267
|
|
|
238
268
|
<br />
|
|
239
|
-
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3>
|
|
240
269
|
|
|
270
|
+
<div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/icon-fill.png" alt="Storm Software" width="200px"/></a></div>
|
|
241
271
|
<br />
|
|
272
|
+
<div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://pub-761b436209f44a4d886487c917806c08.r2.dev/visit-us-text.svg" alt="Visit us at stormsoftware.com" height="90px"/></a></div>
|
|
273
|
+
|
|
274
|
+
<br />
|
|
275
|
+
|
|
242
276
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
243
277
|
<br />
|
|
278
|
+
<br />
|
|
244
279
|
|
|
245
280
|
|
|
246
281
|
<!-- markdownlint-restore -->
|
package/bin/git.js
CHANGED
|
@@ -231785,7 +231785,17 @@ var config_default = {
|
|
|
231785
231785
|
closedIssuePrefix: "\u2705 ",
|
|
231786
231786
|
format: "{type}({scope}): {emoji}{subject}",
|
|
231787
231787
|
disableEmoji: true,
|
|
231788
|
-
list: [
|
|
231788
|
+
list: [
|
|
231789
|
+
"test",
|
|
231790
|
+
"feat",
|
|
231791
|
+
"fix",
|
|
231792
|
+
"chore",
|
|
231793
|
+
"docs",
|
|
231794
|
+
"refactor",
|
|
231795
|
+
"style",
|
|
231796
|
+
"ci",
|
|
231797
|
+
"perf"
|
|
231798
|
+
],
|
|
231789
231799
|
maxMessageLength: 75,
|
|
231790
231800
|
minMessageLength: 3,
|
|
231791
231801
|
questions: CommitQuestionsKeys,
|
|
@@ -231808,7 +231818,7 @@ var config_default = {
|
|
|
231808
231818
|
},
|
|
231809
231819
|
style: {
|
|
231810
231820
|
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
231811
|
-
title: "
|
|
231821
|
+
title: "Styling",
|
|
231812
231822
|
emoji: "\u{1F48E}"
|
|
231813
231823
|
},
|
|
231814
231824
|
refactor: {
|
|
@@ -231823,12 +231833,12 @@ var config_default = {
|
|
|
231823
231833
|
},
|
|
231824
231834
|
test: {
|
|
231825
231835
|
description: "Adding missing tests or correcting existing tests",
|
|
231826
|
-
title: "
|
|
231836
|
+
title: "Testing",
|
|
231827
231837
|
emoji: "\u{1F6A8}"
|
|
231828
231838
|
},
|
|
231829
|
-
|
|
231839
|
+
deps: {
|
|
231830
231840
|
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
231831
|
-
title: "
|
|
231841
|
+
title: "Dependency Upgrades",
|
|
231832
231842
|
emoji: "\u{1F4E6}"
|
|
231833
231843
|
},
|
|
231834
231844
|
ci: {
|
|
@@ -231859,7 +231869,7 @@ var config_default2 = {
|
|
|
231859
231869
|
[
|
|
231860
231870
|
"chore",
|
|
231861
231871
|
// Changes that affect the build system or dependency-only changes
|
|
231862
|
-
"
|
|
231872
|
+
"deps",
|
|
231863
231873
|
// Changes to CI workflows
|
|
231864
231874
|
"ci",
|
|
231865
231875
|
// Documentation-only changes
|
|
@@ -14,7 +14,7 @@ module.exports = {
|
|
|
14
14
|
[
|
|
15
15
|
"chore",
|
|
16
16
|
// Changes that affect the build system or dependency-only changes
|
|
17
|
-
"
|
|
17
|
+
"deps",
|
|
18
18
|
// Changes to CI workflows
|
|
19
19
|
"ci",
|
|
20
20
|
// Documentation-only changes
|
|
@@ -57,7 +57,8 @@ module.exports = {
|
|
|
57
57
|
description: "Select the type of change that you're committing"
|
|
58
58
|
},
|
|
59
59
|
scope: {
|
|
60
|
-
description:
|
|
60
|
+
description:
|
|
61
|
+
"Select the scope of this change (package name in the monorepo)"
|
|
61
62
|
},
|
|
62
63
|
subject: {
|
|
63
64
|
description: "Write a short, imperative tense description of the change"
|
package/package.json
CHANGED
package/src/cli/index.js
CHANGED
|
@@ -165680,7 +165680,17 @@ var config_default = {
|
|
|
165680
165680
|
closedIssuePrefix: "\u2705 ",
|
|
165681
165681
|
format: "{type}({scope}): {emoji}{subject}",
|
|
165682
165682
|
disableEmoji: true,
|
|
165683
|
-
list: [
|
|
165683
|
+
list: [
|
|
165684
|
+
"test",
|
|
165685
|
+
"feat",
|
|
165686
|
+
"fix",
|
|
165687
|
+
"chore",
|
|
165688
|
+
"docs",
|
|
165689
|
+
"refactor",
|
|
165690
|
+
"style",
|
|
165691
|
+
"ci",
|
|
165692
|
+
"perf"
|
|
165693
|
+
],
|
|
165684
165694
|
maxMessageLength: 75,
|
|
165685
165695
|
minMessageLength: 3,
|
|
165686
165696
|
questions: CommitQuestionsKeys,
|
|
@@ -165703,7 +165713,7 @@ var config_default = {
|
|
|
165703
165713
|
},
|
|
165704
165714
|
style: {
|
|
165705
165715
|
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
165706
|
-
title: "
|
|
165716
|
+
title: "Styling",
|
|
165707
165717
|
emoji: "\u{1F48E}"
|
|
165708
165718
|
},
|
|
165709
165719
|
refactor: {
|
|
@@ -165718,12 +165728,12 @@ var config_default = {
|
|
|
165718
165728
|
},
|
|
165719
165729
|
test: {
|
|
165720
165730
|
description: "Adding missing tests or correcting existing tests",
|
|
165721
|
-
title: "
|
|
165731
|
+
title: "Testing",
|
|
165722
165732
|
emoji: "\u{1F6A8}"
|
|
165723
165733
|
},
|
|
165724
|
-
|
|
165734
|
+
deps: {
|
|
165725
165735
|
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
165726
|
-
title: "
|
|
165736
|
+
title: "Dependency Upgrades",
|
|
165727
165737
|
emoji: "\u{1F4E6}"
|
|
165728
165738
|
},
|
|
165729
165739
|
ci: {
|
|
@@ -165754,7 +165764,7 @@ var config_default2 = {
|
|
|
165754
165764
|
[
|
|
165755
165765
|
"chore",
|
|
165756
165766
|
// Changes that affect the build system or dependency-only changes
|
|
165757
|
-
"
|
|
165767
|
+
"deps",
|
|
165758
165768
|
// Changes to CI workflows
|
|
165759
165769
|
"ci",
|
|
165760
165770
|
// Documentation-only changes
|
package/src/commit/config.js
CHANGED
|
@@ -17,7 +17,17 @@ var config_default = {
|
|
|
17
17
|
closedIssuePrefix: "\u2705 ",
|
|
18
18
|
format: "{type}({scope}): {emoji}{subject}",
|
|
19
19
|
disableEmoji: true,
|
|
20
|
-
list: [
|
|
20
|
+
list: [
|
|
21
|
+
"test",
|
|
22
|
+
"feat",
|
|
23
|
+
"fix",
|
|
24
|
+
"chore",
|
|
25
|
+
"docs",
|
|
26
|
+
"refactor",
|
|
27
|
+
"style",
|
|
28
|
+
"ci",
|
|
29
|
+
"perf"
|
|
30
|
+
],
|
|
21
31
|
maxMessageLength: 75,
|
|
22
32
|
minMessageLength: 3,
|
|
23
33
|
questions: CommitQuestionsKeys,
|
|
@@ -40,7 +50,7 @@ var config_default = {
|
|
|
40
50
|
},
|
|
41
51
|
style: {
|
|
42
52
|
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
43
|
-
title: "
|
|
53
|
+
title: "Styling",
|
|
44
54
|
emoji: "\u{1F48E}"
|
|
45
55
|
},
|
|
46
56
|
refactor: {
|
|
@@ -55,12 +65,12 @@ var config_default = {
|
|
|
55
65
|
},
|
|
56
66
|
test: {
|
|
57
67
|
description: "Adding missing tests or correcting existing tests",
|
|
58
|
-
title: "
|
|
68
|
+
title: "Testing",
|
|
59
69
|
emoji: "\u{1F6A8}"
|
|
60
70
|
},
|
|
61
|
-
|
|
71
|
+
deps: {
|
|
62
72
|
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
63
|
-
title: "
|
|
73
|
+
title: "Dependency Upgrades",
|
|
64
74
|
emoji: "\u{1F4E6}"
|
|
65
75
|
},
|
|
66
76
|
ci: {
|
|
@@ -91,7 +101,7 @@ var config_default2 = {
|
|
|
91
101
|
[
|
|
92
102
|
"chore",
|
|
93
103
|
// Changes that affect the build system or dependency-only changes
|
|
94
|
-
"
|
|
104
|
+
"deps",
|
|
95
105
|
// Changes to CI workflows
|
|
96
106
|
"ci",
|
|
97
107
|
// Documentation-only changes
|
package/src/commit/index.js
CHANGED
|
@@ -37655,7 +37655,17 @@ var config_default = {
|
|
|
37655
37655
|
closedIssuePrefix: "\u2705 ",
|
|
37656
37656
|
format: "{type}({scope}): {emoji}{subject}",
|
|
37657
37657
|
disableEmoji: true,
|
|
37658
|
-
list: [
|
|
37658
|
+
list: [
|
|
37659
|
+
"test",
|
|
37660
|
+
"feat",
|
|
37661
|
+
"fix",
|
|
37662
|
+
"chore",
|
|
37663
|
+
"docs",
|
|
37664
|
+
"refactor",
|
|
37665
|
+
"style",
|
|
37666
|
+
"ci",
|
|
37667
|
+
"perf"
|
|
37668
|
+
],
|
|
37659
37669
|
maxMessageLength: 75,
|
|
37660
37670
|
minMessageLength: 3,
|
|
37661
37671
|
questions: CommitQuestionsKeys,
|
|
@@ -37678,7 +37688,7 @@ var config_default = {
|
|
|
37678
37688
|
},
|
|
37679
37689
|
style: {
|
|
37680
37690
|
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
37681
|
-
title: "
|
|
37691
|
+
title: "Styling",
|
|
37682
37692
|
emoji: "\u{1F48E}"
|
|
37683
37693
|
},
|
|
37684
37694
|
refactor: {
|
|
@@ -37693,12 +37703,12 @@ var config_default = {
|
|
|
37693
37703
|
},
|
|
37694
37704
|
test: {
|
|
37695
37705
|
description: "Adding missing tests or correcting existing tests",
|
|
37696
|
-
title: "
|
|
37706
|
+
title: "Testing",
|
|
37697
37707
|
emoji: "\u{1F6A8}"
|
|
37698
37708
|
},
|
|
37699
|
-
|
|
37709
|
+
deps: {
|
|
37700
37710
|
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
37701
|
-
title: "
|
|
37711
|
+
title: "Dependency Upgrades",
|
|
37702
37712
|
emoji: "\u{1F4E6}"
|
|
37703
37713
|
},
|
|
37704
37714
|
ci: {
|
|
@@ -37729,7 +37739,7 @@ var config_default2 = {
|
|
|
37729
37739
|
[
|
|
37730
37740
|
"chore",
|
|
37731
37741
|
// Changes that affect the build system or dependency-only changes
|
|
37732
|
-
"
|
|
37742
|
+
"deps",
|
|
37733
37743
|
// Changes to CI workflows
|
|
37734
37744
|
"ci",
|
|
37735
37745
|
// Documentation-only changes
|
package/src/commitizen/index.js
CHANGED
|
@@ -37602,7 +37602,17 @@ var config_default = {
|
|
|
37602
37602
|
closedIssuePrefix: "\u2705 ",
|
|
37603
37603
|
format: "{type}({scope}): {emoji}{subject}",
|
|
37604
37604
|
disableEmoji: true,
|
|
37605
|
-
list: [
|
|
37605
|
+
list: [
|
|
37606
|
+
"test",
|
|
37607
|
+
"feat",
|
|
37608
|
+
"fix",
|
|
37609
|
+
"chore",
|
|
37610
|
+
"docs",
|
|
37611
|
+
"refactor",
|
|
37612
|
+
"style",
|
|
37613
|
+
"ci",
|
|
37614
|
+
"perf"
|
|
37615
|
+
],
|
|
37606
37616
|
maxMessageLength: 75,
|
|
37607
37617
|
minMessageLength: 3,
|
|
37608
37618
|
questions: CommitQuestionsKeys,
|
|
@@ -37625,7 +37635,7 @@ var config_default = {
|
|
|
37625
37635
|
},
|
|
37626
37636
|
style: {
|
|
37627
37637
|
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
37628
|
-
title: "
|
|
37638
|
+
title: "Styling",
|
|
37629
37639
|
emoji: "\u{1F48E}"
|
|
37630
37640
|
},
|
|
37631
37641
|
refactor: {
|
|
@@ -37640,12 +37650,12 @@ var config_default = {
|
|
|
37640
37650
|
},
|
|
37641
37651
|
test: {
|
|
37642
37652
|
description: "Adding missing tests or correcting existing tests",
|
|
37643
|
-
title: "
|
|
37653
|
+
title: "Testing",
|
|
37644
37654
|
emoji: "\u{1F6A8}"
|
|
37645
37655
|
},
|
|
37646
|
-
|
|
37656
|
+
deps: {
|
|
37647
37657
|
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
37648
|
-
title: "
|
|
37658
|
+
title: "Dependency Upgrades",
|
|
37649
37659
|
emoji: "\u{1F4E6}"
|
|
37650
37660
|
},
|
|
37651
37661
|
ci: {
|
|
@@ -37676,7 +37686,7 @@ var config_default2 = {
|
|
|
37676
37686
|
[
|
|
37677
37687
|
"chore",
|
|
37678
37688
|
// Changes that affect the build system or dependency-only changes
|
|
37679
|
-
"
|
|
37689
|
+
"deps",
|
|
37680
37690
|
// Changes to CI workflows
|
|
37681
37691
|
"ci",
|
|
37682
37692
|
// Documentation-only changes
|
package/src/commitlint/config.js
CHANGED
|
@@ -10,7 +10,7 @@ var config_default = {
|
|
|
10
10
|
[
|
|
11
11
|
"chore",
|
|
12
12
|
// Changes that affect the build system or dependency-only changes
|
|
13
|
-
"
|
|
13
|
+
"deps",
|
|
14
14
|
// Changes to CI workflows
|
|
15
15
|
"ci",
|
|
16
16
|
// Documentation-only changes
|
|
@@ -68,6 +68,102 @@ var config_default = {
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
};
|
|
71
|
+
var DEFAULT_CONVENTIONAL_COMMITS_CONFIG = {
|
|
72
|
+
types: {
|
|
73
|
+
feat: {
|
|
74
|
+
semverBump: "minor",
|
|
75
|
+
changelog: {
|
|
76
|
+
title: "Features",
|
|
77
|
+
hidden: false
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
fix: {
|
|
81
|
+
semverBump: "patch",
|
|
82
|
+
changelog: {
|
|
83
|
+
title: "Bug Fixes",
|
|
84
|
+
hidden: false
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
perf: {
|
|
88
|
+
semverBump: "none",
|
|
89
|
+
changelog: {
|
|
90
|
+
title: "Performance Improvements",
|
|
91
|
+
hidden: false
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
refactor: {
|
|
95
|
+
semverBump: "patch",
|
|
96
|
+
changelog: {
|
|
97
|
+
title: "Refactoring",
|
|
98
|
+
hidden: false
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
docs: {
|
|
102
|
+
semverBump: "none",
|
|
103
|
+
changelog: {
|
|
104
|
+
title: "Documentation",
|
|
105
|
+
hidden: true
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
deps: {
|
|
109
|
+
semverBump: "patch",
|
|
110
|
+
changelog: {
|
|
111
|
+
title: "Dependency Upgrades",
|
|
112
|
+
hidden: false
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
types: {
|
|
116
|
+
semverBump: "minor",
|
|
117
|
+
changelog: {
|
|
118
|
+
title: "Type Definitions",
|
|
119
|
+
hidden: false
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
chore: {
|
|
123
|
+
semverBump: "none",
|
|
124
|
+
changelog: {
|
|
125
|
+
title: "Chores",
|
|
126
|
+
hidden: true
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
examples: {
|
|
130
|
+
semverBump: "none",
|
|
131
|
+
changelog: {
|
|
132
|
+
title: "Examples",
|
|
133
|
+
hidden: true
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
test: {
|
|
137
|
+
semverBump: "none",
|
|
138
|
+
changelog: {
|
|
139
|
+
title: "Testing",
|
|
140
|
+
hidden: true
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
style: {
|
|
144
|
+
semverBump: "minor",
|
|
145
|
+
changelog: {
|
|
146
|
+
title: "Styling",
|
|
147
|
+
hidden: false
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
ci: {
|
|
151
|
+
semverBump: "patch",
|
|
152
|
+
changelog: {
|
|
153
|
+
title: "Continuous Integration",
|
|
154
|
+
hidden: false
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
revert: {
|
|
158
|
+
semverBump: "patch",
|
|
159
|
+
changelog: {
|
|
160
|
+
title: "Revert",
|
|
161
|
+
hidden: false
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
};
|
|
71
166
|
export {
|
|
167
|
+
DEFAULT_CONVENTIONAL_COMMITS_CONFIG,
|
|
72
168
|
config_default as default
|
|
73
169
|
};
|