@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 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.40-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.45-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 -->
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("#999999")("----------------------------------------") + "\n" + chalk2__default.default.bold.hex("#FFFFFF")(
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("#CCCCCC")("Please provide the requested details below...")
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("#999999")("----------------------------------------") + `
1367
- ${chalk2__default.default.bold.hex("#FFFFFF")("Commit message")} - ${chalk2__default.default.hex("#DDDDDD")(message)}
1368
- ${chalk2__default.default.bold.hex("#FFFFFF")("Git-Commit File")} - ${chalk2__default.default.hex("#DDDDDD")(
1369
- commitMsgFile
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 });