@storm-software/git-tools 2.25.1 → 2.27.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 +14 -0
- package/README.md +36 -16
- package/bin/git.js +17764 -20494
- package/package.json +7 -2
- package/readme/templates/README.footer.md +53 -18
- package/readme/templates/README.header.md +3 -3
- package/src/cli/index.js +15406 -18136
- package/src/index.js +15416 -18146
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/git-tools",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.27.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing various git tools used in Storm workspaces.",
|
|
6
6
|
"repository": {
|
|
@@ -60,21 +60,26 @@
|
|
|
60
60
|
],
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@commitlint/types": "19.0.3",
|
|
63
|
+
"@textlint/markdown-to-ast": "14.0.4",
|
|
64
|
+
"anchor-markdown-header": "0.7.0",
|
|
63
65
|
"any-shell-escape": "0.1.1",
|
|
64
66
|
"axios": "1.7.2",
|
|
65
67
|
"commander": "12.1.0",
|
|
66
|
-
"doctoc": "2.2.1",
|
|
67
68
|
"fs-extra": "11.2.0",
|
|
68
69
|
"fuzzy": "0.1.3",
|
|
70
|
+
"htmlparser2": "9.1.0",
|
|
69
71
|
"inquirer": "9.2.23",
|
|
70
72
|
"jsonc-parser": "3.2.1",
|
|
71
73
|
"nx": "^19.1.0",
|
|
72
74
|
"prettier": "3.3.2",
|
|
73
75
|
"semver": "7.6.2",
|
|
74
76
|
"tsconfig-paths": "4.2.0",
|
|
77
|
+
"underscore": "1.13.6",
|
|
78
|
+
"update-section": "0.3.3",
|
|
75
79
|
"word-wrap": "1.2.5"
|
|
76
80
|
},
|
|
77
81
|
"devDependencies": {
|
|
82
|
+
"@types/htmlparser2": "3.10.7",
|
|
78
83
|
"@types/inquirer": "9.0.7",
|
|
79
84
|
"@types/prettier": "3.0.0"
|
|
80
85
|
},
|
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
## Storm Workspaces
|
|
2
2
|
|
|
3
|
-
Storm workspaces are built using
|
|
3
|
+
Storm workspaces are built using
|
|
4
|
+
<a href="https://nx.dev/" target="_blank">Nx</a>, a set of extensible dev tools
|
|
5
|
+
for monorepos, which helps you develop like Google, Facebook, and Microsoft.
|
|
6
|
+
Building on top of Nx, the Open System provides a set of tools and patterns that
|
|
7
|
+
help you scale your monorepo to many teams while keeping the codebase
|
|
8
|
+
maintainable.
|
|
4
9
|
|
|
5
10
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
6
11
|
<br />
|
|
7
12
|
|
|
8
13
|
## Roadmap
|
|
9
14
|
|
|
10
|
-
See the [open issues](https://github.com/storm-software/storm-ops/issues) for a
|
|
15
|
+
See the [open issues](https://github.com/storm-software/storm-ops/issues) for a
|
|
16
|
+
list of proposed features (and known issues).
|
|
11
17
|
|
|
12
|
-
- [Top Feature Requests](https://github.com/storm-software/storm-ops/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc)
|
|
13
|
-
|
|
18
|
+
- [Top Feature Requests](https://github.com/storm-software/storm-ops/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc)
|
|
19
|
+
(Add your votes using the 👍 reaction)
|
|
20
|
+
- [Top Bugs](https://github.com/storm-software/storm-ops/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc)
|
|
21
|
+
(Add your votes using the 👍 reaction)
|
|
14
22
|
- [Newest Bugs](https://github.com/storm-software/storm-ops/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
|
|
15
23
|
|
|
16
24
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
@@ -29,7 +37,8 @@ Reach out to the maintainer at one of the following places:
|
|
|
29
37
|
|
|
30
38
|
## License
|
|
31
39
|
|
|
32
|
-
This project is licensed under the **Apache License 2.0**. Feel free to edit and
|
|
40
|
+
This project is licensed under the **Apache License 2.0**. Feel free to edit and
|
|
41
|
+
distribute this template as you like.
|
|
33
42
|
|
|
34
43
|
See [LICENSE](LICENSE) for more information.
|
|
35
44
|
|
|
@@ -38,32 +47,42 @@ See [LICENSE](LICENSE) for more information.
|
|
|
38
47
|
|
|
39
48
|
## Changelog
|
|
40
49
|
|
|
41
|
-
This project adheres to
|
|
50
|
+
This project adheres to
|
|
51
|
+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). Every release, along
|
|
52
|
+
with the migration instructions, is documented in the [CHANGELOG](CHANGELOG.md)
|
|
53
|
+
file
|
|
42
54
|
|
|
43
55
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
44
56
|
<br />
|
|
45
57
|
|
|
46
58
|
## Contributing
|
|
47
59
|
|
|
48
|
-
First off, thanks for taking the time to contribute! Contributions are what
|
|
60
|
+
First off, thanks for taking the time to contribute! Contributions are what
|
|
61
|
+
makes the open-source community such an amazing place to learn, inspire, and
|
|
62
|
+
create. Any contributions you make will benefit everybody else and are **greatly
|
|
63
|
+
appreciated**.
|
|
49
64
|
|
|
50
65
|
Please try to create bug reports that are:
|
|
51
66
|
|
|
52
67
|
- _Reproducible._ Include steps to reproduce the problem.
|
|
53
|
-
- _Specific._ Include as much detail as possible: which version, what
|
|
68
|
+
- _Specific._ Include as much detail as possible: which version, what
|
|
69
|
+
environment, etc.
|
|
54
70
|
- _Unique._ Do not duplicate existing opened issues.
|
|
55
71
|
- _Scoped to a Single Bug._ One bug per report.
|
|
56
72
|
|
|
57
73
|
Please adhere to this project's [code of conduct](.github/CODE_OF_CONDUCT.md).
|
|
58
74
|
|
|
59
|
-
You can use
|
|
75
|
+
You can use
|
|
76
|
+
[markdownlint-cli](https://github.com/storm-software/storm-ops/markdownlint-cli)
|
|
77
|
+
to check for common markdown style inconsistency.
|
|
60
78
|
|
|
61
79
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
62
80
|
<br />
|
|
63
81
|
|
|
64
82
|
## Contributors
|
|
65
83
|
|
|
66
|
-
Thanks goes to these wonderful people
|
|
84
|
+
Thanks goes to these wonderful people
|
|
85
|
+
([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
67
86
|
|
|
68
87
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
69
88
|
|
|
@@ -88,7 +107,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
88
107
|
|
|
89
108
|
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
90
109
|
|
|
91
|
-
This project follows the
|
|
110
|
+
This project follows the
|
|
111
|
+
[all-contributors](https://github.com/all-contributors/all-contributors)
|
|
112
|
+
specification. Contributions of any kind welcome!
|
|
92
113
|
|
|
93
114
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
94
115
|
<br />
|
|
@@ -102,9 +123,7 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
102
123
|
<br />
|
|
103
124
|
|
|
104
125
|
<div align="center">
|
|
105
|
-
<
|
|
106
|
-
<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>
|
|
107
|
-
</b>
|
|
126
|
+
<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>
|
|
108
127
|
</div>
|
|
109
128
|
|
|
110
129
|
<div align="center">
|
|
@@ -112,15 +131,31 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
|
|
112
131
|
</div>
|
|
113
132
|
<br />
|
|
114
133
|
|
|
115
|
-
Storm Software is an open source software development organization and creator
|
|
134
|
+
Storm Software is an open source software development organization and creator
|
|
135
|
+
of Acidic, StormStack and StormCloud.
|
|
116
136
|
|
|
117
|
-
Our mission is to make software development more accessible. Our ideal future is
|
|
137
|
+
Our mission is to make software development more accessible. Our ideal future is
|
|
138
|
+
one where anyone can create software without years of prior development
|
|
139
|
+
experience serving as a barrier to entry. We hope to achieve this via LLMs,
|
|
140
|
+
Generative AI, and intuitive, high-level data modeling/programming languages.
|
|
118
141
|
|
|
119
|
-
|
|
142
|
+
Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team,
|
|
143
|
+
receive release notifications, ask questions, and get involved.
|
|
120
144
|
|
|
145
|
+
If this sounds interesting, and you would like to help us in creating the next
|
|
146
|
+
generation of development tools, please reach out on our
|
|
147
|
+
[website](https://stormsoftware.com/contact) or join our
|
|
148
|
+
[Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA)
|
|
149
|
+
channel!
|
|
150
|
+
|
|
151
|
+
<br />
|
|
152
|
+
|
|
153
|
+
<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>
|
|
121
154
|
<br />
|
|
122
|
-
<
|
|
155
|
+
<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>
|
|
123
156
|
|
|
124
157
|
<br />
|
|
158
|
+
|
|
125
159
|
<div align="right">[ <a href="#table-of-contents">Back to top ▲</a> ]</div>
|
|
126
160
|
<br />
|
|
161
|
+
<br />
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<b>
|
|
6
6
|
<a href="https://stormsoftware.com" target="_blank">Website</a> •
|
|
7
7
|
<a href="https://github.com/storm-software/storm-ops" target="_blank">GitHub</a> •
|
|
8
|
-
<a href="https://discord.gg/MQ6YVzakM5">Discord</a> •
|
|
8
|
+
<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> •
|
|
9
9
|
<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>
|
|
10
10
|
</b>
|
|
11
11
|
</div>
|
|
@@ -33,9 +33,9 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
33
33
|
|
|
34
34
|
<br />
|
|
35
35
|
|
|
36
|
-
<!-- START doctoc
|
|
36
|
+
<!-- START doctoc -->
|
|
37
37
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
38
38
|
|
|
39
|
-
<!-- END doctoc
|
|
39
|
+
<!-- END doctoc -->
|
|
40
40
|
|
|
41
41
|
<br />
|