@storm-software/git-tools 1.10.8 → 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 +14 -0
- package/README.md +1 -1
- package/cli/index.js +19 -7
- package/cli/index.js.map +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
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
|
+
|
|
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)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Reduce path length of `mainEntryPointFilePath` api-extractor option ([1e747d3](https://github.com/storm-software/storm-ops/commit/1e747d34c5c9c82e00884d140632f9e725950672))
|
|
14
|
+
|
|
1
15
|
## [1.10.7](https://github.com/storm-software/storm-ops/compare/git-tools-v1.10.6...git-tools-v1.10.7) (2023-11-29)
|
|
2
16
|
|
|
3
17
|
|
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
|
-
[](https://prettier.io/)
|
|
20
20
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
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) ? "
|
|
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(
|
|
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) ? "
|
|
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(
|
|
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(
|
|
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(
|
|
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("
|
|
194241
|
+
description = `${generator.description.replaceAll("*", "\\*")}
|
|
194230
194242
|
|
|
194231
194243
|
`;
|
|
194232
194244
|
}
|