@storm-software/git-tools 1.10.5 → 1.10.6
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 -3
- package/cli/index.js +20 -20
- package/cli/index.js.map +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.10.5](https://github.com/storm-software/storm-ops/compare/git-tools-v1.10.4...git-tools-v1.10.5) (2023-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Resolved issue with paths passed to api-extractor ([3f7c5ea](https://github.com/storm-software/storm-ops/commit/3f7c5ea14b3db1d1444624781a5ec025cc432552))
|
|
7
|
+
|
|
1
8
|
## [1.10.4](https://github.com/storm-software/storm-ops/compare/git-tools-v1.10.3...git-tools-v1.10.4) (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
|
-
[](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 />
|
|
@@ -40,8 +40,6 @@ This package contains various [Git](https://git-scm.com/) management tools combi
|
|
|
40
40
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
41
41
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
42
42
|
|
|
43
|
-
## Table of Contents
|
|
44
|
-
|
|
45
43
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
46
44
|
|
|
47
45
|
## Building
|
package/cli/index.js
CHANGED
|
@@ -194007,35 +194007,35 @@ 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 += `| ${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
|
-
result3 +=
|
|
194013
|
+
result3 += ` | ${schema.enum.map(
|
|
194014
194014
|
(x7) => !schema.type || schema.type === "string" ? `"${x7}"` : `\`${x7}\``
|
|
194015
194015
|
).join(" \\| ")} `;
|
|
194016
194016
|
} else if (schema.type === "array" && schema.items?.type) {
|
|
194017
|
-
result3 +=
|
|
194017
|
+
result3 += ` | \`${schema.items.type}[]\` `;
|
|
194018
194018
|
} else {
|
|
194019
|
-
result3 +=
|
|
194019
|
+
result3 += ` | \`${schema.type}\` `;
|
|
194020
194020
|
}
|
|
194021
194021
|
} else {
|
|
194022
|
-
result3 +=
|
|
194022
|
+
result3 += ` | \`string\` `;
|
|
194023
194023
|
}
|
|
194024
194024
|
if (schema.description) {
|
|
194025
|
-
result3 +=
|
|
194025
|
+
result3 += ` | ${schema.description.replaceAll("`", "\\`").replaceAll("*", "\\*")} `;
|
|
194026
194026
|
} else {
|
|
194027
|
-
result3 +=
|
|
194027
|
+
result3 += ` | `;
|
|
194028
194028
|
}
|
|
194029
194029
|
if (schema.default) {
|
|
194030
|
-
result3 += schema.type === "string" || !schema.type ?
|
|
194030
|
+
result3 += schema.type === "string" || !schema.type ? ` | "${schema.default}" ` : schema.type === "array" ? ` | \`[]\` ` : ` | \`${schema.default}\` `;
|
|
194031
194031
|
} else {
|
|
194032
|
-
result3 +=
|
|
194032
|
+
result3 += ` | `;
|
|
194033
194033
|
}
|
|
194034
194034
|
result3 += ` |
|
|
194035
194035
|
`;
|
|
194036
194036
|
}
|
|
194037
194037
|
return result3;
|
|
194038
|
-
}).join();
|
|
194038
|
+
}).join(" ");
|
|
194039
194039
|
result2 += "\n\n";
|
|
194040
194040
|
if (required.length > 0) {
|
|
194041
194041
|
result2 += `**Please note:** _Option names followed by \\* above are required, and must be provided to run the executor._
|
|
@@ -194108,35 +194108,35 @@ var getGeneratorMarkdown = (packageName, generatorsJsonFile, generatorsJson) =>
|
|
|
194108
194108
|
result2 += Object.entries(schemaJson.properties).map(([name2, schema]) => {
|
|
194109
194109
|
let resultSchema = "";
|
|
194110
194110
|
if (name2) {
|
|
194111
|
-
resultSchema += `| ${name2}${required2.includes(name2) ? "\\*" : " "} `;
|
|
194111
|
+
resultSchema += `| ${required2.includes(name2) ? "*" : ""}${name2}${required2.includes(name2) ? " \\*" : " "}${required2.includes(name2) ? "*" : ""} `;
|
|
194112
194112
|
if (schema.type) {
|
|
194113
194113
|
if (schema.enum && Array.isArray(schema.enum) && schema.enum.length > 0) {
|
|
194114
|
-
resultSchema +=
|
|
194114
|
+
resultSchema += ` | ${schema.enum.map(
|
|
194115
194115
|
(x7) => !schema.type || schema.type === "string" ? `"${x7}"` : `\`${x7}\``
|
|
194116
194116
|
).join(" \\| ")} `;
|
|
194117
194117
|
} else if (schema.type === "array" && schema.items?.type) {
|
|
194118
|
-
resultSchema +=
|
|
194118
|
+
resultSchema += ` | \`${schema.items.type}[]\` `;
|
|
194119
194119
|
} else {
|
|
194120
|
-
resultSchema +=
|
|
194120
|
+
resultSchema += ` | \`${schema.type}\` `;
|
|
194121
194121
|
}
|
|
194122
194122
|
} else {
|
|
194123
|
-
resultSchema +=
|
|
194123
|
+
resultSchema += ` | \`string\` `;
|
|
194124
194124
|
}
|
|
194125
194125
|
if (schema.description) {
|
|
194126
|
-
resultSchema +=
|
|
194126
|
+
resultSchema += ` | ${schema.description.replaceAll("`", "\\`").replaceAll("*", "\\*")} `;
|
|
194127
194127
|
} else {
|
|
194128
|
-
resultSchema +=
|
|
194128
|
+
resultSchema += ` | `;
|
|
194129
194129
|
}
|
|
194130
194130
|
if (schema.default) {
|
|
194131
|
-
resultSchema += schema.type === "string" || !schema.type ?
|
|
194131
|
+
resultSchema += schema.type === "string" || !schema.type ? ` | "${schema.default}" ` : schema.type === "array" ? ` | \`[]\` ` : ` | \`${schema.default}\` `;
|
|
194132
194132
|
} else {
|
|
194133
|
-
resultSchema +=
|
|
194133
|
+
resultSchema += ` | `;
|
|
194134
194134
|
}
|
|
194135
194135
|
resultSchema += ` |
|
|
194136
194136
|
`;
|
|
194137
194137
|
}
|
|
194138
194138
|
return resultSchema;
|
|
194139
|
-
}).join();
|
|
194139
|
+
}).join(" ");
|
|
194140
194140
|
result2 += "\n\n";
|
|
194141
194141
|
if (required2.length > 0) {
|
|
194142
194142
|
result2 += `**Please note:** _Option names followed by \\* above are required, and must be provided to run the executor._
|