@storm-software/git-tools 1.10.14 → 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,22 @@
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
+
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)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **workspace-tools:** Add back the `declarationDir` value to the compilerOptions for dts build ([b02402d](https://github.com/storm-software/storm-ops/commit/b02402d6ef3c57b217771b2f086058c329c0b5af))
14
+
15
+
16
+ ### Reverts
17
+
18
+ * **workspace-tools:** Revert tsup patch back to previous version before updates to api-extractor ([c8a83f1](https://github.com/storm-software/storm-ops/commit/c8a83f1ca6739248576bf81d791d02d02a09acb4))
19
+
1
20
  ## [1.10.13](https://github.com/storm-software/storm-ops/compare/git-tools-v1.10.12...git-tools-v1.10.13) (2023-11-29)
2
21
 
3
22
 
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.12-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
19
+ [![Version](https://img.shields.io/badge/version-1.10.14-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 />
@@ -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