@storm-software/git-tools 1.10.9 → 1.10.10

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.10.9](https://github.com/storm-software/storm-ops/compare/git-tools-v1.10.8...git-tools-v1.10.9) (2023-11-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Update tsup patch to use workspace root as base directory for api-extractor ([d8cdc3c](https://github.com/storm-software/storm-ops/commit/d8cdc3c461ac1a95a814f04e569f05a54d1a8937))
7
+
1
8
  ## [1.10.8](https://github.com/storm-software/storm-ops/compare/git-tools-v1.10.7...git-tools-v1.10.8) (2023-11-29)
2
9
 
3
10
 
package/README.md CHANGED
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
16
16
 
17
17
  <h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
18
18
 
19
- [![Version](https://img.shields.io/badge/version-1.10.5-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
19
+ [![Version](https://img.shields.io/badge/version-1.10.9-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
20
20
  [![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 docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&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)
21
21
 
22
22
  <h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
package/cli/index.js CHANGED
@@ -194007,7 +194007,7 @@ var getExecutorMarkdown = (packageName, executorsJsonFile, executorsJson) => {
194007
194007
  result2 += Object.entries(schemaJson.properties).map(([name2, schema]) => {
194008
194008
  let result3 = "";
194009
194009
  if (name2) {
194010
- result3 += `| ${required.includes(name2) ? "*" : ""}${name2}${required.includes(name2) ? " \\*" : " "}${required.includes(name2) ? "*" : ""} `;
194010
+ result3 += `| ${required.includes(name2) ? "**" : ""}${name2}${required.includes(name2) ? " \\*" : " "}${required.includes(name2) ? "**" : ""} `;
194011
194011
  if (schema.type) {
194012
194012
  if (schema.enum && Array.isArray(schema.enum) && schema.enum.length > 0) {
194013
194013
  result3 += ` | ${schema.enum.map(
@@ -194096,7 +194096,10 @@ var getGeneratorMarkdown = (packageName, generatorsJsonFile, generatorsJson) =>
194096
194096
  `;
194097
194097
  }
194098
194098
  if (schemaJson.description) {
194099
- description = `${schemaJson.description.replaceAll("`", "\\`").replaceAll("*", "\\*")}
194099
+ description = `${schemaJson.description.replaceAll(
194100
+ "*",
194101
+ "\\*"
194102
+ )}
194100
194103
 
194101
194104
  `;
194102
194105
  }
@@ -194108,7 +194111,7 @@ var getGeneratorMarkdown = (packageName, generatorsJsonFile, generatorsJson) =>
194108
194111
  result2 += Object.entries(schemaJson.properties).map(([name2, schema]) => {
194109
194112
  let resultSchema = "";
194110
194113
  if (name2) {
194111
- resultSchema += `| ${required2.includes(name2) ? "*" : ""}${name2}${required2.includes(name2) ? " \\*" : " "}${required2.includes(name2) ? "*" : ""} `;
194114
+ resultSchema += `| ${required2.includes(name2) ? "**" : ""}${name2}${required2.includes(name2) ? " \\*" : " "}${required2.includes(name2) ? "**" : ""} `;
194112
194115
  if (schema.type) {
194113
194116
  if (schema.enum && Array.isArray(schema.enum) && schema.enum.length > 0) {
194114
194117
  resultSchema += ` | ${schema.enum.map(
@@ -194123,7 +194126,10 @@ var getGeneratorMarkdown = (packageName, generatorsJsonFile, generatorsJson) =>
194123
194126
  resultSchema += ` | \`string\` `;
194124
194127
  }
194125
194128
  if (schema.description) {
194126
- resultSchema += ` | ${schema.description.replaceAll("`", "\\`").replaceAll("*", "\\*")} `;
194129
+ resultSchema += ` | ${schema.description.replaceAll(
194130
+ "*",
194131
+ "\\*"
194132
+ )} `;
194127
194133
  } else {
194128
194134
  resultSchema += ` | `;
194129
194135
  }
@@ -194154,7 +194160,10 @@ This generator can be used by executing the following examples in a command line
194154
194160
  example += schemaJson.example.map((exampleCmd) => {
194155
194161
  let resultCmd = "";
194156
194162
  if (exampleCmd.description && typeof exampleCmd.description === "string") {
194157
- resultCmd += `${exampleCmd.description.replaceAll("`", "\\`").replaceAll("*", "\\*")}
194163
+ resultCmd += `${exampleCmd.description.replaceAll(
194164
+ "*",
194165
+ "\\*"
194166
+ )}
194158
194167
 
194159
194168
  `;
194160
194169
  }
@@ -194176,7 +194185,10 @@ ${exampleCmd.command}
194176
194185
  if (schemaJson.example.description && typeof schemaJson.example.description === "string") {
194177
194186
  example = `### Example
194178
194187
 
194179
- ${schemaJson.example.description.replaceAll("`", "\\`").replaceAll("*", "\\*")}
194188
+ ${schemaJson.example.description.replaceAll(
194189
+ "*",
194190
+ "\\*"
194191
+ )}
194180
194192
 
194181
194193
  `;
194182
194194
  } else {
@@ -194226,7 +194238,7 @@ nx g ${packageName}:${name}
194226
194238
  `;
194227
194239
  }
194228
194240
  if (!description && generator.description) {
194229
- description = `${generator.description.replaceAll("`", "\\`").replaceAll("*", "\\*")}
194241
+ description = `${generator.description.replaceAll("*", "\\*")}
194230
194242
 
194231
194243
  `;
194232
194244
  }