@storm-software/git-tools 2.56.0 → 2.57.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 +7 -0
- package/README.md +1 -1
- package/bin/git.js +1 -1
- package/package.json +1 -1
- package/src/cli/index.js +1 -1
- package/src/commit/index.js +1 -1
- package/src/index.js +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/git.js
CHANGED
|
@@ -232276,7 +232276,7 @@ var runCommit = async (commitConfig = "@storm-software/git-tools/commit/config.j
|
|
|
232276
232276
|
commandItems.push("-S");
|
|
232277
232277
|
}
|
|
232278
232278
|
commandItems.push(...["--file", commitMsgFile]);
|
|
232279
|
-
const command = shellescape.default();
|
|
232279
|
+
const command = shellescape.default(commandItems);
|
|
232280
232280
|
if (dryRun) {
|
|
232281
232281
|
console.log("Will execute command:");
|
|
232282
232282
|
console.log(command.replace(commitMsgFile, ".git/COMMIT_EDITMSG"));
|
package/package.json
CHANGED
package/src/cli/index.js
CHANGED
|
@@ -228066,7 +228066,7 @@ var runCommit = async (commitConfig = "@storm-software/git-tools/commit/config.j
|
|
|
228066
228066
|
commandItems.push("-S");
|
|
228067
228067
|
}
|
|
228068
228068
|
commandItems.push(...["--file", commitMsgFile]);
|
|
228069
|
-
const command = shellescape.default();
|
|
228069
|
+
const command = shellescape.default(commandItems);
|
|
228070
228070
|
if (dryRun) {
|
|
228071
228071
|
console.log("Will execute command:");
|
|
228072
228072
|
console.log(command.replace(commitMsgFile, ".git/COMMIT_EDITMSG"));
|
package/src/commit/index.js
CHANGED
|
@@ -38089,7 +38089,7 @@ var runCommit = async (commitConfig = "@storm-software/git-tools/commit/config.j
|
|
|
38089
38089
|
commandItems.push("-S");
|
|
38090
38090
|
}
|
|
38091
38091
|
commandItems.push(...["--file", commitMsgFile]);
|
|
38092
|
-
const command = shellescape.default();
|
|
38092
|
+
const command = shellescape.default(commandItems);
|
|
38093
38093
|
if (dryRun) {
|
|
38094
38094
|
console.log("Will execute command:");
|
|
38095
38095
|
console.log(command.replace(commitMsgFile, ".git/COMMIT_EDITMSG"));
|
package/src/index.js
CHANGED
|
@@ -228168,7 +228168,7 @@ var runCommit = async (commitConfig = "@storm-software/git-tools/commit/config.j
|
|
|
228168
228168
|
commandItems.push("-S");
|
|
228169
228169
|
}
|
|
228170
228170
|
commandItems.push(...["--file", commitMsgFile]);
|
|
228171
|
-
const command = shellescape.default();
|
|
228171
|
+
const command = shellescape.default(commandItems);
|
|
228172
228172
|
if (dryRun) {
|
|
228173
228173
|
console.log("Will execute command:");
|
|
228174
228174
|
console.log(command.replace(commitMsgFile, ".git/COMMIT_EDITMSG"));
|