@storm-software/git-tools 1.10.15 → 1.10.16

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.15](https://github.com/storm-software/storm-ops/compare/git-tools-v1.10.14...git-tools-v1.10.15) (2023-11-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Update the path separators in api-extractor parameters ([59a0908](https://github.com/storm-software/storm-ops/commit/59a09086e48af2f8aff9297878c3cd436eaf7837))
7
+
1
8
  ## [1.10.14](https://github.com/storm-software/storm-ops/compare/git-tools-v1.10.13...git-tools-v1.10.14) (2023-11-29)
2
9
 
3
10
 
package/README.md CHANGED
@@ -42,6 +42,32 @@ This package contains various [Git](https://git-scm.com/) management tools combi
42
42
 
43
43
  <!-- END doctoc generated TOC please keep comment here to allow auto update -->
44
44
 
45
+ ## Installing
46
+
47
+ Using [pnpm](http://pnpm.io):
48
+
49
+ ```bash
50
+ pnpm add -D @storm-software/git-tools
51
+ ```
52
+
53
+ <details>
54
+ <summary>Using npm</summary>
55
+
56
+ ```bash
57
+ npm install -D @storm-software/git-tools
58
+ ```
59
+
60
+ </details>
61
+
62
+ <details>
63
+ <summary>Using yarn</summary>
64
+
65
+ ```bash
66
+ yarn add -D @storm-software/git-tools
67
+ ```
68
+
69
+ </details>
70
+
45
71
  ## Building
46
72
 
47
73
  Run `nx build git-tools` to build the library.
package/cli/index.js CHANGED
@@ -194168,13 +194168,14 @@ This generator can be used by executing the following examples in a command line
194168
194168
  `;
194169
194169
  }
194170
194170
  if (exampleCmd.command && typeof exampleCmd.command === "string") {
194171
- resultCmd += `\`\`\`cmd
194171
+ resultCmd += `\`\`\`bash
194172
194172
  ${exampleCmd.command}
194173
194173
  \`\`\`
194174
194174
 
194175
194175
  `;
194176
194176
  } else if (typeof exampleCmd === "string") {
194177
- resultCmd += `\`\`\`cmd n${exampleCmd}
194177
+ resultCmd += `\`\`\`bash
194178
+ ${exampleCmd}
194178
194179
  \`\`\`
194179
194180
 
194180
194181
  `;
@@ -194198,7 +194199,7 @@ This generator can be used by executing the following in a command line utility:
194198
194199
 
194199
194200
  `;
194200
194201
  }
194201
- example += `\`\`\`cmd
194202
+ example += `\`\`\`bash
194202
194203
  ${schemaJson.example.command}
194203
194204
  \`\`\`
194204
194205
 
@@ -194209,7 +194210,7 @@ ${schemaJson.example.command}
194209
194210
  This generator can be used by executing the following in a command line utility:
194210
194211
 
194211
194212
  `;
194212
- example += `\`\`\`cmd
194213
+ example += `\`\`\`bash
194213
194214
  ${schemaJson.example}
194214
194215
  \`\`\`
194215
194216
 
@@ -194220,7 +194221,7 @@ ${schemaJson.example}
194220
194221
  This generator can be used by executing the following in a command line utility:
194221
194222
 
194222
194223
  `;
194223
- example += `\`\`\`cmd
194224
+ example += `\`\`\`bash
194224
194225
  nx g ${packageName}:${name}
194225
194226
  \`\`\`
194226
194227