@storm-software/git-tools 2.131.46 → 2.131.47
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 +1 -1
- package/bin/git.cjs +10 -7
- package/bin/git.cjs.map +1 -1
- package/bin/git.js +10 -7
- package/bin/git.js.map +1 -1
- package/package.json +9 -9
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/bin/git.cjs
CHANGED
|
@@ -1355,19 +1355,22 @@ async function runCommit(commitizenFile, dryRun = false) {
|
|
|
1355
1355
|
chunkMEDWSATF_cjs.writeInfo("Running in dry mode.", workspaceConfig);
|
|
1356
1356
|
}
|
|
1357
1357
|
console.log(
|
|
1358
|
-
chalk2__default.default.bold.hex("#
|
|
1358
|
+
chalk2__default.default.bold.hex("#4b585b")("----------------------------------------") + "\n" + chalk2__default.default.bold.hex("#FFFFFF")(
|
|
1359
1359
|
` ${chunkMEDWSATF_cjs.brandIcon(workspaceConfig)} Storm Software Git-Tools - Commit`
|
|
1360
|
-
) + "\n" + chalk2__default.default.hex("#
|
|
1360
|
+
) + "\n" + chalk2__default.default.hex("#9ca8ab")("Please provide the requested details below...") + "\n"
|
|
1361
1361
|
);
|
|
1362
1362
|
state.answers = await askQuestions(state);
|
|
1363
1363
|
const message = formatCommitMessage(state, workspaceConfig);
|
|
1364
1364
|
const commitMsgFile = chunkMEDWSATF_cjs.joinPaths(getGitDir(), "COMMIT_EDITMSG");
|
|
1365
1365
|
console.log(
|
|
1366
|
-
chalk2__default.default.bold.hex("#
|
|
1367
|
-
|
|
1368
|
-
${chalk2__default.default.bold.hex("#FFFFFF")("
|
|
1369
|
-
|
|
1370
|
-
)}
|
|
1366
|
+
chalk2__default.default.bold.hex("#4b585b")("----------------------------------------") + `
|
|
1367
|
+
|
|
1368
|
+
${chalk2__default.default.bold.hex("#FFFFFF")("Commit message")}${chalk2__default.default.hex("#4b585b")(
|
|
1369
|
+
" - "
|
|
1370
|
+
)}${chalk2__default.default.hex("#9ca8ab")(message)}
|
|
1371
|
+
${chalk2__default.default.bold.hex("#FFFFFF")("Git-Commit File")}${chalk2__default.default.hex("#4b585b")(
|
|
1372
|
+
" - "
|
|
1373
|
+
)}${chalk2__default.default.hex("#9ca8ab")(commitMsgFile)}
|
|
1371
1374
|
`
|
|
1372
1375
|
);
|
|
1373
1376
|
await runCommitLint(workspaceConfig, { message });
|