@storm-software/git-tools 2.122.6 → 2.122.7

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/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-2.122.4-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![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 Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&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)
24
+ [![Version](https://img.shields.io/badge/version-2.122.5-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![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 Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&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)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -16,7 +16,8 @@ var run = (config, command, cwd = config.workspaceRoot ?? process.cwd(), stdio =
16
16
  windowsHide: true,
17
17
  stdio,
18
18
  maxBuffer: LARGE_BUFFER,
19
- killSignal: "SIGTERM"
19
+ killSignal: "SIGTERM",
20
+ encoding: "utf8"
20
21
  });
21
22
  };
22
23
 
@@ -14,7 +14,8 @@ var run = (config, command, cwd = config.workspaceRoot ?? process.cwd(), stdio =
14
14
  windowsHide: true,
15
15
  stdio,
16
16
  maxBuffer: LARGE_BUFFER,
17
- killSignal: "SIGTERM"
17
+ killSignal: "SIGTERM",
18
+ encoding: "utf8"
18
19
  });
19
20
  };
20
21
 
package/bin/git.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
3
 
4
- var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
4
+ var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
5
5
  var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
6
6
  var TOML = require('@ltd/j-toml');
7
7
  var commander = require('commander');
@@ -1342,7 +1342,7 @@ async function runCommit(commitizenFile, dryRun = false) {
1342
1342
  chunkU33ERNJG_cjs.writeDebug(`Message [dry-run]: ${message}`, workspaceConfig);
1343
1343
  } else {
1344
1344
  await fs__default.default.writeFile(commitMsgFile, message);
1345
- chunkCIJVSMK2_cjs.run(workspaceConfig, command);
1345
+ chunkL64XVBGM_cjs.run(workspaceConfig, command);
1346
1346
  }
1347
1347
  }
1348
1348
  async function askQuestions(state) {
package/bin/git.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { run } from './chunk-54Q5U5WW.js';
2
+ import { run } from './chunk-S5PS23TL.js';
3
3
  import { getConfig, handleProcess, writeSuccess, exitWithSuccess, exitWithError, writeInfo, findWorkspaceRootSafe, writeFatal, getWorkspaceConfig, joinPaths, writeDebug, defu, isVerbose, writeWarning, writeTrace, STORM_DEFAULT_RELEASE_BANNER, __require } from './chunk-CPA5SGWF.js';
4
4
  import TOML from '@ltd/j-toml';
5
5
  import { Command, Option } from 'commander';
@@ -2,7 +2,7 @@
2
2
  'use strict';
3
3
 
4
4
  var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
5
- var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
5
+ var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
6
6
  var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
7
7
 
8
8
  // bin/post-checkout.ts
@@ -13,7 +13,7 @@ void (async () => {
13
13
  chunkU33ERNJG_cjs.writeInfo("Running post-checkout hook...", config);
14
14
  chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
15
15
  try {
16
- chunkCIJVSMK2_cjs.run(config, "git-lfs version");
16
+ chunkL64XVBGM_cjs.run(config, "git-lfs version");
17
17
  } catch (error) {
18
18
  chunkU33ERNJG_cjs.writeError(
19
19
  `This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.
@@ -22,7 +22,7 @@ Error: ${error?.message}`,
22
22
  );
23
23
  chunkU33ERNJG_cjs.exitWithError(config);
24
24
  }
25
- chunkCIJVSMK2_cjs.run(config, "git lfs post-checkout");
25
+ chunkL64XVBGM_cjs.run(config, "git lfs post-checkout");
26
26
  chunkU33ERNJG_cjs.exitWithSuccess(config);
27
27
  } catch (error) {
28
28
  chunkU33ERNJG_cjs.writeFatal(
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
3
- import { run } from './chunk-54Q5U5WW.js';
3
+ import { run } from './chunk-S5PS23TL.js';
4
4
  import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-CPA5SGWF.js';
5
5
 
6
6
  // bin/post-checkout.ts
@@ -2,7 +2,7 @@
2
2
  'use strict';
3
3
 
4
4
  var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
5
- var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
5
+ var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
6
6
  var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
7
7
 
8
8
  // bin/post-commit.ts
@@ -13,7 +13,7 @@ void (async () => {
13
13
  chunkU33ERNJG_cjs.writeInfo("Running post-commit hook...", config);
14
14
  chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
15
15
  try {
16
- chunkCIJVSMK2_cjs.run(config, "git-lfs version");
16
+ chunkL64XVBGM_cjs.run(config, "git-lfs version");
17
17
  } catch (error) {
18
18
  chunkU33ERNJG_cjs.writeError(
19
19
  `This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-commit.
@@ -22,7 +22,7 @@ Error: ${error?.message}`,
22
22
  );
23
23
  chunkU33ERNJG_cjs.exitWithError(config);
24
24
  }
25
- chunkCIJVSMK2_cjs.run(config, "git lfs post-commit");
25
+ chunkL64XVBGM_cjs.run(config, "git lfs post-commit");
26
26
  chunkU33ERNJG_cjs.exitWithSuccess(config);
27
27
  } catch (error) {
28
28
  chunkU33ERNJG_cjs.writeFatal(
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
3
- import { run } from './chunk-54Q5U5WW.js';
3
+ import { run } from './chunk-S5PS23TL.js';
4
4
  import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-CPA5SGWF.js';
5
5
 
6
6
  // bin/post-commit.ts
@@ -2,7 +2,7 @@
2
2
  'use strict';
3
3
 
4
4
  var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
5
- var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
5
+ var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
6
6
  var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
7
7
 
8
8
  // bin/post-merge.ts
@@ -13,7 +13,7 @@ void (async () => {
13
13
  chunkU33ERNJG_cjs.writeInfo("Running post-merge hook...", config);
14
14
  chunkSWXHQXUT_cjs.checkPackageVersion(process.argv?.slice(1));
15
15
  try {
16
- chunkCIJVSMK2_cjs.run(config, "git-lfs version");
16
+ chunkL64XVBGM_cjs.run(config, "git-lfs version");
17
17
  } catch (error) {
18
18
  chunkU33ERNJG_cjs.writeError(
19
19
  `This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.
@@ -22,7 +22,7 @@ Error: ${error?.message}`,
22
22
  );
23
23
  chunkU33ERNJG_cjs.exitWithError(config);
24
24
  }
25
- chunkCIJVSMK2_cjs.run(config, "git lfs post-merge");
25
+ chunkL64XVBGM_cjs.run(config, "git lfs post-merge");
26
26
  chunkU33ERNJG_cjs.exitWithSuccess(config);
27
27
  } catch (error) {
28
28
  chunkU33ERNJG_cjs.writeFatal(
package/bin/post-merge.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
3
- import { run } from './chunk-54Q5U5WW.js';
3
+ import { run } from './chunk-S5PS23TL.js';
4
4
  import { getConfig, handleProcess, writeInfo, writeError, exitWithError, exitWithSuccess, writeFatal } from './chunk-CPA5SGWF.js';
5
5
 
6
6
  // bin/post-merge.ts
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
3
 
4
- var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
4
+ var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
5
5
  var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
6
6
 
7
7
  // bin/pre-install.ts
@@ -14,7 +14,7 @@ void (async () => {
14
14
  chunkU33ERNJG_cjs.writeInfo("Skipping pre-install for CI process...", config);
15
15
  chunkU33ERNJG_cjs.exitWithSuccess(config);
16
16
  }
17
- chunkCIJVSMK2_cjs.run(config, "npx -y only-allow pnpm");
17
+ chunkL64XVBGM_cjs.run(config, "npx -y only-allow pnpm");
18
18
  chunkU33ERNJG_cjs.exitWithSuccess(config);
19
19
  } catch (error) {
20
20
  chunkU33ERNJG_cjs.writeFatal(
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { run } from './chunk-54Q5U5WW.js';
2
+ import { run } from './chunk-S5PS23TL.js';
3
3
  import { getConfig, handleProcess, writeInfo, exitWithSuccess, writeFatal, exitWithError } from './chunk-CPA5SGWF.js';
4
4
 
5
5
  // bin/pre-install.ts
package/bin/pre-push.cjs CHANGED
@@ -2,7 +2,7 @@
2
2
  'use strict';
3
3
 
4
4
  var chunkSWXHQXUT_cjs = require('./chunk-SWXHQXUT.cjs');
5
- var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
5
+ var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
6
6
  var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
7
7
  var fs = require('fs');
8
8
  var promises = require('fs/promises');
@@ -61,9 +61,9 @@ void (async () => {
61
61
  chunkU33ERNJG_cjs.exitWithError(config);
62
62
  }
63
63
  chunkU33ERNJG_cjs.writeSuccess("Lock file is valid \u2705", config);
64
- chunkCIJVSMK2_cjs.run(config, "git lfs pre-push origin");
64
+ chunkL64XVBGM_cjs.run(config, "git lfs pre-push origin");
65
65
  try {
66
- chunkCIJVSMK2_cjs.run(config, "git-lfs version");
66
+ chunkL64XVBGM_cjs.run(config, "git-lfs version");
67
67
  } catch (error) {
68
68
  chunkU33ERNJG_cjs.writeError(
69
69
  `This repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.
@@ -72,7 +72,7 @@ Error: ${error?.message}`,
72
72
  );
73
73
  chunkU33ERNJG_cjs.exitWithError(config);
74
74
  }
75
- chunkCIJVSMK2_cjs.run(config, "git lfs pre-push origin");
75
+ chunkL64XVBGM_cjs.run(config, "git lfs pre-push origin");
76
76
  chunkU33ERNJG_cjs.exitWithSuccess(config);
77
77
  } catch (error) {
78
78
  chunkU33ERNJG_cjs.writeFatal(
package/bin/pre-push.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { checkPackageVersion } from './chunk-AMSZ7DVW.js';
3
- import { run } from './chunk-54Q5U5WW.js';
3
+ import { run } from './chunk-S5PS23TL.js';
4
4
  import { getConfig, handleProcess, writeInfo, writeError, exitWithError, writeSuccess, exitWithSuccess, writeFatal } from './chunk-CPA5SGWF.js';
5
5
  import fs from 'node:fs';
6
6
  import { readFile } from 'node:fs/promises';
package/bin/prepare.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
3
 
4
- var chunkCIJVSMK2_cjs = require('./chunk-CIJVSMK2.cjs');
4
+ var chunkL64XVBGM_cjs = require('./chunk-L64XVBGM.cjs');
5
5
  var chunkU33ERNJG_cjs = require('./chunk-U33ERNJG.cjs');
6
6
 
7
7
  // bin/prepare.ts
@@ -11,7 +11,7 @@ void (async () => {
11
11
  chunkU33ERNJG_cjs.handleProcess(config);
12
12
  chunkU33ERNJG_cjs.writeInfo("Running prepare hook...", config);
13
13
  if (!process.env.CI && !process.env.STORM_CI) {
14
- chunkCIJVSMK2_cjs.run(config, "lefthook install");
14
+ chunkL64XVBGM_cjs.run(config, "lefthook install");
15
15
  }
16
16
  chunkU33ERNJG_cjs.exitWithSuccess(config);
17
17
  } catch (error) {
package/bin/prepare.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { run } from './chunk-54Q5U5WW.js';
2
+ import { run } from './chunk-S5PS23TL.js';
3
3
  import { getConfig, handleProcess, writeInfo, exitWithSuccess, writeFatal, exitWithError } from './chunk-CPA5SGWF.js';
4
4
 
5
5
  // bin/prepare.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.122.6",
3
+ "version": "2.122.7",
4
4
  "type": "module",
5
5
  "description": "Tools for managing Git repositories within a Nx workspace.",
6
6
  "repository": {
@@ -185,8 +185,8 @@
185
185
  "@inquirer/prompts": "7.2.1",
186
186
  "@nx/devkit": "^21.4.1",
187
187
  "@nx/js": "^21.4.1",
188
- "@storm-software/config": "^1.133.0",
189
- "@storm-software/config-tools": "^1.187.1",
188
+ "@storm-software/config": "^1.133.1",
189
+ "@storm-software/config-tools": "^1.187.2",
190
190
  "@textlint/ast-node-types": "14.4.2",
191
191
  "@textlint/markdown-to-ast": "14.4.2",
192
192
  "anchor-markdown-header": "0.7.0",
@@ -194,7 +194,7 @@
194
194
  "axios": "1.8.2",
195
195
  "chalk": "^4.1.2",
196
196
  "chalk-template": "1.1.0",
197
- "conventional-changelog-storm-software": "^0.2.6",
197
+ "conventional-changelog-storm-software": "^0.2.7",
198
198
  "htmlparser2": "10.0.0",
199
199
  "jsonc-parser": "3.2.1",
200
200
  "nx": "^21.4.1",
@@ -216,5 +216,5 @@
216
216
  "tsup": "8.4.0"
217
217
  },
218
218
  "publishConfig": { "access": "public" },
219
- "gitHead": "6928556be32247f000a29f9aa3e3aa14f83149c3"
219
+ "gitHead": "5ba1714ea3ed713513913707565190fad212ee67"
220
220
  }