@storm-software/git-tools 2.101.0 → 2.101.2

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.
@@ -35342,7 +35342,7 @@ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
35342
35342
  var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
35343
35343
  var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
35344
35344
  var STORM_DEFAULT_LICENSE = "Apache-2.0";
35345
- var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
35345
+ var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
35346
35346
  var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
35347
35347
  var STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
35348
35348
  var STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
@@ -35342,7 +35342,7 @@ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
35342
35342
  var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
35343
35343
  var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
35344
35344
  var STORM_DEFAULT_LICENSE = "Apache-2.0";
35345
- var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
35345
+ var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
35346
35346
  var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
35347
35347
  var STORM_DEFAULT_ACCOUNT_DISCORD = "https://discord.gg/MQ6YVzakM5";
35348
35348
  var STORM_DEFAULT_ACCOUNT_TELEGRAM = "https://t.me/storm_software";
package/bin/git.cjs CHANGED
@@ -21,7 +21,7 @@ var _chunkFNIN2HF7cjs = require('./chunk-FNIN2HF7.cjs');
21
21
 
22
22
 
23
23
 
24
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
24
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
25
25
 
26
26
 
27
27
  var _chunkP2CHIYIKcjs = require('./chunk-P2CHIYIK.cjs');
@@ -3264,7 +3264,7 @@ var require_wrap_ansi = _chunkKK4YC43Scjs.__commonJS.call(void 0, {
3264
3264
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
3265
3265
  var stringWidth = require_string_width();
3266
3266
  var stripAnsi2 = require_strip_ansi();
3267
- var ansiStyles2 = _chunkGLCRW2R7cjs.require_ansi_styles.call(void 0, );
3267
+ var ansiStyles2 = _chunkKX7Y62QYcjs.require_ansi_styles.call(void 0, );
3268
3268
  var ESCAPES2 = /* @__PURE__ */ new Set([
3269
3269
  "\x1B",
3270
3270
  "\x9B"
@@ -15606,7 +15606,7 @@ var require_node = _chunkKK4YC43Scjs.__commonJS.call(void 0, {
15606
15606
  1
15607
15607
  ];
15608
15608
  try {
15609
- const supportsColor2 = _chunkGLCRW2R7cjs.require_supports_color.call(void 0, );
15609
+ const supportsColor2 = _chunkKX7Y62QYcjs.require_supports_color.call(void 0, );
15610
15610
  if (supportsColor2 && (supportsColor2.stderr || supportsColor2).level >= 2) {
15611
15611
  exports.colors = [
15612
15612
  20,
@@ -67098,12 +67098,12 @@ var getRuleFromScopeEnum = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0,
67098
67098
  // src/commitlint/run.ts
67099
67099
  var COMMIT_EDITMSG_PATH = ".git/COMMIT_EDITMSG";
67100
67100
  var runCommitLint = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (config, params) => {
67101
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "\u{1F4DD} Validating git commit message aligns with the Storm Software specification", config);
67101
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "\u{1F4DD} Validating git commit message aligns with the Storm Software specification", config);
67102
67102
  let commitMessage;
67103
67103
  if (params.message && params.message !== COMMIT_EDITMSG_PATH) {
67104
67104
  commitMessage = params.message;
67105
67105
  } else {
67106
- const commitFile = _chunkGLCRW2R7cjs.joinPaths.call(void 0, config.workspaceRoot, params.file || params.message || COMMIT_EDITMSG_PATH);
67106
+ const commitFile = _chunkKX7Y62QYcjs.joinPaths.call(void 0, config.workspaceRoot, params.file || params.message || COMMIT_EDITMSG_PATH);
67107
67107
  if (_fs.existsSync.call(void 0, commitFile)) {
67108
67108
  commitMessage = await _asyncOptionalChain([(await _promises.readFile.call(void 0, commitFile, "utf8")), 'optionalAccess', async _81 => _81.trim, 'call', async _82 => _82()]);
67109
67109
  }
@@ -67115,19 +67115,19 @@ var runCommitLint = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async
67115
67115
  if (upstreamRemote) {
67116
67116
  const upstreamRemoteIdentifier = _optionalChain([upstreamRemote, 'access', _83 => _83.split, 'call', _84 => _84(" "), 'access', _85 => _85[0], 'optionalAccess', _86 => _86.trim, 'call', _87 => _87()]);
67117
67117
  if (!upstreamRemoteIdentifier) {
67118
- _chunkGLCRW2R7cjs.writeWarning.call(void 0, `No upstream remote found for ${config.name}.git. Skipping comparison.`, config);
67118
+ _chunkKX7Y62QYcjs.writeWarning.call(void 0, `No upstream remote found for ${config.name}.git. Skipping comparison.`, config);
67119
67119
  return;
67120
67120
  }
67121
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, `Comparing against remote ${upstreamRemoteIdentifier}`);
67121
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, `Comparing against remote ${upstreamRemoteIdentifier}`);
67122
67122
  const currentBranch = _child_process2.default.execSync("git branch --show-current").toString().trim();
67123
67123
  gitLogCmd = gitLogCmd + ` ${currentBranch} ^${upstreamRemoteIdentifier}/main`;
67124
67124
  } else {
67125
- _chunkGLCRW2R7cjs.writeWarning.call(void 0, `No upstream remote found for ${config.name}.git. Skipping comparison against upstream main.`, config);
67125
+ _chunkKX7Y62QYcjs.writeWarning.call(void 0, `No upstream remote found for ${config.name}.git. Skipping comparison against upstream main.`, config);
67126
67126
  return;
67127
67127
  }
67128
67128
  commitMessage = _child_process2.default.execSync(gitLogCmd).toString().trim();
67129
67129
  if (!commitMessage) {
67130
- _chunkGLCRW2R7cjs.writeWarning.call(void 0, "No commits found. Skipping commit message validation.", config);
67130
+ _chunkKX7Y62QYcjs.writeWarning.call(void 0, "No commits found. Skipping commit message validation.", config);
67131
67131
  return;
67132
67132
  }
67133
67133
  }
@@ -67145,7 +67145,7 @@ var runCommitLint = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async
67145
67145
  helpUrl: commitlintConfig.helpUrl
67146
67146
  });
67147
67147
  if (!matchCommit || report.errors.length || report.warnings.length) {
67148
- _chunkGLCRW2R7cjs.writeSuccess.call(void 0, `Commit was processing completed successfully!`, config);
67148
+ _chunkKX7Y62QYcjs.writeSuccess.call(void 0, `Commit was processing completed successfully!`, config);
67149
67149
  } else {
67150
67150
  let errorMessage = " Oh no! Your commit message: \n-------------------------------------------------------------------\n" + commitMessage + "\n-------------------------------------------------------------------\n\n Does not follow the commit message convention specified by Storm Software.";
67151
67151
  errorMessage += "\ntype(scope): subject \n BLANK LINE \n body";
@@ -68339,7 +68339,7 @@ var createState = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (c
68339
68339
  answers: {}
68340
68340
  };
68341
68341
  } else {
68342
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, `Using custom commit config file: ${commitizenFile}`, config);
68342
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, `Using custom commit config file: ${commitizenFile}`, config);
68343
68343
  let commitizenConfig = await Promise.resolve().then(() => _interopRequireWildcard(require(commitizenFile)));
68344
68344
  if (_optionalChain([commitizenConfig, 'optionalAccess', _93 => _93.default])) {
68345
68345
  commitizenConfig = _optionalChain([commitizenConfig, 'optionalAccess', _94 => _94.default]);
@@ -68380,7 +68380,7 @@ var createState = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (c
68380
68380
  }
68381
68381
  if (project) {
68382
68382
  let description = `${project.name} - ${project.root}`;
68383
- const packageJsonPath = _chunkGLCRW2R7cjs.joinPaths.call(void 0, project.root, "package.json");
68383
+ const packageJsonPath = _chunkKX7Y62QYcjs.joinPaths.call(void 0, project.root, "package.json");
68384
68384
  if (await hfs.isFile(packageJsonPath)) {
68385
68385
  const packageJson = await hfs.json(packageJsonPath);
68386
68386
  description = packageJson.description || description;
@@ -68454,10 +68454,10 @@ ${closedIssueEmoji}${config.prompt.settings.closedIssueMessage}${issues}`;
68454
68454
 
68455
68455
  // src/commit/run.ts
68456
68456
  var runCommit = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (commitizenFile = "@storm-software/git-tools/commit/config", dryRun = false) => {
68457
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
68457
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
68458
68458
  const state = await createState(config, commitizenFile);
68459
68459
  if (dryRun) {
68460
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running in dry mode.", config);
68460
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running in dry mode.", config);
68461
68461
  }
68462
68462
  console.log(chalk_template_default`
68463
68463
  {bold.#999999 ----------------------------------------}
@@ -68467,7 +68467,7 @@ var runCommit = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (com
68467
68467
  `);
68468
68468
  state.answers = await askQuestions(state);
68469
68469
  const message2 = formatCommitMessage(state);
68470
- const commitMsgFile = _chunkGLCRW2R7cjs.joinPaths.call(void 0, getGitDir(), "COMMIT_EDITMSG");
68470
+ const commitMsgFile = _chunkKX7Y62QYcjs.joinPaths.call(void 0, getGitDir(), "COMMIT_EDITMSG");
68471
68471
  console.log(chalk_template_default`
68472
68472
  {bold.#999999 ----------------------------------------}
68473
68473
 
@@ -68491,8 +68491,8 @@ var runCommit = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (com
68491
68491
  ]);
68492
68492
  const command = (0, import_any_shell_escape.default)(commandItems);
68493
68493
  if (dryRun) {
68494
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, `Skipping execution [dry-run]: ${command.replace(commitMsgFile, ".git/COMMIT_EDITMSG")}`, config);
68495
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, `Message [dry-run]: ${message2}`, config);
68494
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, `Skipping execution [dry-run]: ${command.replace(commitMsgFile, ".git/COMMIT_EDITMSG")}`, config);
68495
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, `Message [dry-run]: ${message2}`, config);
68496
68496
  } else {
68497
68497
  await _promises2.default.writeFile(commitMsgFile, message2);
68498
68498
  _chunkFNIN2HF7cjs.run.call(void 0, config, command);
@@ -80885,7 +80885,7 @@ var _nxjsonjs = require('nx/src/config/nx-json.js');
80885
80885
 
80886
80886
  // src/release/changelog.ts
80887
80887
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
80888
- var chalk2 = _chunkKK4YC43Scjs.__toESM.call(void 0, _chunkGLCRW2R7cjs.require_source.call(void 0, ), 1);
80888
+ var chalk2 = _chunkKK4YC43Scjs.__toESM.call(void 0, _chunkKX7Y62QYcjs.require_source.call(void 0, ), 1);
80889
80889
  var import_enquirer = _chunkKK4YC43Scjs.__toESM.call(void 0, require_enquirer(), 1);
80890
80890
  var import_semver2 = _chunkKK4YC43Scjs.__toESM.call(void 0, require_semver2(), 1);
80891
80891
  var import_tmp = _chunkKK4YC43Scjs.__toESM.call(void 0, require_tmp2(), 1);
@@ -84455,7 +84455,7 @@ var StormChangelogRenderer = (_class13 = class extends _changelogrenderer2.defau
84455
84455
  super(config);_class13.prototype.__init27.call(this);;
84456
84456
  }
84457
84457
  async render() {
84458
- this.workspaceConfig = await _chunkGLCRW2R7cjs.getWorkspaceConfig.call(void 0, );
84458
+ this.workspaceConfig = await _chunkKX7Y62QYcjs.getWorkspaceConfig.call(void 0, );
84459
84459
  return await super.render();
84460
84460
  }
84461
84461
  preprocessChanges() {
@@ -84629,7 +84629,7 @@ var StormChangelogRenderer = (_class13 = class extends _changelogrenderer2.defau
84629
84629
  // src/release/changelog.ts
84630
84630
  function createAPI(overrideReleaseConfig) {
84631
84631
  return /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async function releaseChangelog(args) {
84632
- const workspaceConfig = await _chunkGLCRW2R7cjs.getWorkspaceConfig.call(void 0, );
84632
+ const workspaceConfig = await _chunkKX7Y62QYcjs.getWorkspaceConfig.call(void 0, );
84633
84633
  const projectGraph = await _projectgraph.createProjectGraphAsync.call(void 0, {
84634
84634
  exitOnError: true
84635
84635
  });
@@ -85179,7 +85179,7 @@ async function applyChangesAndExit(args, nxReleaseConfig, tree, toSHA, postGitTa
85179
85179
  }
85180
85180
  _chunkKK4YC43Scjs.__name.call(void 0, applyChangesAndExit, "applyChangesAndExit");
85181
85181
  async function generateChangelogForWorkspace({ tree, args, projectGraph, nxReleaseConfig, workspaceChangelogVersion, changes, commits }) {
85182
- const workspaceConfig = await _chunkGLCRW2R7cjs.getWorkspaceConfig.call(void 0, );
85182
+ const workspaceConfig = await _chunkKX7Y62QYcjs.getWorkspaceConfig.call(void 0, );
85183
85183
  if (!workspaceConfig) {
85184
85184
  throw new Error(`Unable to determine the Storm workspace config. Please ensure that your storm-workspace.json file is present and valid.`);
85185
85185
  }
@@ -85269,7 +85269,7 @@ async function generateChangelogForWorkspace({ tree, args, projectGraph, nxRelea
85269
85269
  }
85270
85270
  _chunkKK4YC43Scjs.__name.call(void 0, generateChangelogForWorkspace, "generateChangelogForWorkspace");
85271
85271
  async function generateChangelogForProjects({ tree, args, changes, projectsVersionData, releaseGroup, projects, nxReleaseConfig, projectToAdditionalDependencyBumps }) {
85272
- const workspaceConfig = await _chunkGLCRW2R7cjs.getWorkspaceConfig.call(void 0, );
85272
+ const workspaceConfig = await _chunkKX7Y62QYcjs.getWorkspaceConfig.call(void 0, );
85273
85273
  if (!workspaceConfig) {
85274
85274
  throw new Error(`Unable to determine the Storm workspace config. Please ensure that your storm-workspace.json file is present and valid.`);
85275
85275
  }
@@ -85478,11 +85478,9 @@ ${workspaceConfig.release.header || ""}
85478
85478
 
85479
85479
  We at [${titleCase(workspaceConfig.organization)}](${workspaceConfig.homepage}) are very excited to announce the v${releaseVersion2.rawVersion} release of the ${projectName ? titleCase(projectName) : workspaceConfig.name ? titleCase(workspaceConfig.name) : "Storm Software"} project! \u{1F680}
85480
85480
 
85481
- These changes are released under the ${workspaceConfig.license.includes("license") ? workspaceConfig.license : `${workspaceConfig.license} license`}. You can find more details on [our licensing page](${workspaceConfig.licensing}).
85481
+ These changes are released under the ${workspaceConfig.license.includes("license") ? workspaceConfig.license : `${workspaceConfig.license} license`}. You can find more details on [our licensing page](${workspaceConfig.licensing}). You can find guides, API references, and other documentation around this release (and much more) on [our documentation site](${workspaceConfig.docs}).
85482
85482
 
85483
- You can find guides, API references, and other documentation around this release (and much more) on [our documentation site](${workspaceConfig.docs}).
85484
-
85485
- If you have any questions or comments, feel free to reach out to the team on [Discord](${workspaceConfig.account.discord}) or [our contact page](${workspaceConfig.contact}). Please help us spread the word by [tweeting](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@${workspaceConfig.account.twitter}%20release%20${projectName ? `${_optionalChain([titleCase, 'call', _236 => _236(projectName), 'optionalAccess', _237 => _237.replaceAll, 'call', _238 => _238(" ", "%20")])}%20` : ""}v${releaseVersion2.rawVersion}%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/${workspaceConfig.organization}/${workspaceConfig.name}/releases/tag/${releaseVersion2.gitTag}) about this release!
85483
+ If you have any questions or comments, feel free to reach out to the team on [Discord](${workspaceConfig.account.discord}) or [our contact page](${workspaceConfig.contact}). Please help us spread the word by giving [this repository](https://github.com/${workspaceConfig.organization}/${workspaceConfig.name}) a star \u2B50 on GitHub or [posting on X (Twitter)](https://x.com/intent/tweet?text=Check%20out%20the%20latest%20@${workspaceConfig.account.twitter}%20release%20${projectName ? `${_optionalChain([titleCase, 'call', _236 => _236(projectName), 'optionalAccess', _237 => _237.replaceAll, 'call', _238 => _238(" ", "%20")])}%20` : ""}v${releaseVersion2.rawVersion}%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/${workspaceConfig.organization}/${workspaceConfig.name}/releases/tag/${releaseVersion2.gitTag}) about this release!
85486
85484
 
85487
85485
  ## Release Notes
85488
85486
 
@@ -85571,13 +85569,13 @@ var _filemaputilsjs = require('nx/src/project-graph/file-map-utils.js');
85571
85569
  var _paramsjs = require('nx/src/utils/params.js');
85572
85570
  async function releaseVersion(config, args) {
85573
85571
  try {
85574
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running release version command", config);
85572
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running release version command", config);
85575
85573
  const projectGraph = await _projectgraphjs.createProjectGraphAsync.call(void 0, {
85576
85574
  exitOnError: true
85577
85575
  });
85578
85576
  const { projects } = _projectgraphjs.readProjectsConfigurationFromProjectGraph.call(void 0, projectGraph);
85579
85577
  const nxJson = _nxjsonjs.readNxJson.call(void 0, );
85580
- const workspaceRoot3 = _nullishCoalesce(_optionalChain([config, 'optionalAccess', _239 => _239.workspaceRoot]), () => ( _chunkGLCRW2R7cjs.findWorkspaceRoot.call(void 0, )));
85578
+ const workspaceRoot3 = _nullishCoalesce(_optionalChain([config, 'optionalAccess', _239 => _239.workspaceRoot]), () => ( _chunkKX7Y62QYcjs.findWorkspaceRoot.call(void 0, )));
85581
85579
  if (args.verbose) {
85582
85580
  process.env.NX_VERBOSE_LOGGING = "true";
85583
85581
  }
@@ -85592,10 +85590,10 @@ async function releaseVersion(config, args) {
85592
85590
  ]);
85593
85591
  throw new Error(`The "release.git" property in nx.json may not be used with the "nx release version" subcommand or programmatic API. Instead, configure git options for subcommands directly with "release.version.git" and "release.changelog.git".`);
85594
85592
  }
85595
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Filtering projects and release groups", config);
85593
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Filtering projects and release groups", config);
85596
85594
  const { error: filterError, releaseGroups, releaseGroupToFilteredProjects } = _filterreleasegroupsjs.filterReleaseGroups.call(void 0, projectGraph, nxReleaseConfig, args.projects, args.groups);
85597
85595
  if (filterError) {
85598
- _chunkGLCRW2R7cjs.writeError.call(void 0, filterError.title, config);
85596
+ _chunkKX7Y62QYcjs.writeError.call(void 0, filterError.title, config);
85599
85597
  throw new Error(filterError.title);
85600
85598
  }
85601
85599
  const tree = new (0, _treejs.FsTree)(workspaceRoot3, true);
@@ -85604,10 +85602,10 @@ async function releaseVersion(config, args) {
85604
85602
  const additionalChangedFiles = /* @__PURE__ */ new Set();
85605
85603
  const generatorCallbacks = [];
85606
85604
  if (_optionalChain([args, 'access', _245 => _245.projects, 'optionalAccess', _246 => _246.length])) {
85607
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Run versioning for all remaining release groups and filtered projects within them", config);
85605
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Run versioning for all remaining release groups and filtered projects within them", config);
85608
85606
  for (const releaseGroup of releaseGroups) {
85609
85607
  const releaseGroupName = releaseGroup.name;
85610
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, `Running versioning for release group "${releaseGroupName}" and filtered projects within it`, config);
85608
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, `Running versioning for release group "${releaseGroupName}" and filtered projects within it`, config);
85611
85609
  const releaseGroupProjectNames = Array.from(_nullishCoalesce(releaseGroupToFilteredProjects.get(releaseGroup), () => ( [])));
85612
85610
  const projectBatches = _batchprojectsbygeneratorconfigjs.batchProjectsByGeneratorConfig.call(void 0,
85613
85611
  projectGraph,
@@ -85616,7 +85614,7 @@ async function releaseVersion(config, args) {
85616
85614
  releaseGroupProjectNames
85617
85615
  );
85618
85616
  for (const [generatorConfigString, projectNames] of projectBatches.entries()) {
85619
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, `Running versioning for batch "${JSON.stringify(projectNames)}" for release-group "${releaseGroupName}"`, config);
85617
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, `Running versioning for batch "${JSON.stringify(projectNames)}" for release-group "${releaseGroupName}"`, config);
85620
85618
  const [generatorName, generatorOptions] = JSON.parse(generatorConfigString);
85621
85619
  const generatorData = resolveGeneratorData({
85622
85620
  ...extractGeneratorCollectionAndName(`batch "${JSON.stringify(projectNames)}" for release-group "${releaseGroupName}"`, generatorName),
@@ -85669,7 +85667,7 @@ async function releaseVersion(config, args) {
85669
85667
  gitCommitArgs: args.gitCommitArgs || _optionalChain([nxReleaseConfig, 'optionalAccess', _253 => _253.version, 'access', _254 => _254.git, 'access', _255 => _255.commitArgs])
85670
85668
  });
85671
85669
  } else if (_nullishCoalesce(args.stageChanges, () => ( _optionalChain([nxReleaseConfig, 'optionalAccess', _256 => _256.version, 'access', _257 => _257.git, 'access', _258 => _258.stageChanges])))) {
85672
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Staging changed files with git", config);
85670
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Staging changed files with git", config);
85673
85671
  await _gitjs.gitAdd.call(void 0, {
85674
85672
  changedFiles: changedFiles2,
85675
85673
  dryRun: args.dryRun,
@@ -85677,7 +85675,7 @@ async function releaseVersion(config, args) {
85677
85675
  });
85678
85676
  }
85679
85677
  if (_nullishCoalesce(args.gitTag, () => ( _optionalChain([nxReleaseConfig, 'optionalAccess', _259 => _259.version, 'access', _260 => _260.git, 'access', _261 => _261.tag])))) {
85680
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Tagging commit with git", config);
85678
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Tagging commit with git", config);
85681
85679
  for (const tag of gitTagValues2) {
85682
85680
  await _gitjs.gitTag.call(void 0, {
85683
85681
  tag,
@@ -85764,7 +85762,7 @@ async function releaseVersion(config, args) {
85764
85762
  gitCommitArgs: args.gitCommitArgs || _optionalChain([nxReleaseConfig, 'optionalAccess', _277 => _277.version, 'access', _278 => _278.git, 'access', _279 => _279.commitArgs])
85765
85763
  });
85766
85764
  } else if (_nullishCoalesce(args.stageChanges, () => ( _optionalChain([nxReleaseConfig, 'optionalAccess', _280 => _280.version, 'access', _281 => _281.git, 'access', _282 => _282.stageChanges])))) {
85767
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Staging changed files with git", config);
85765
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Staging changed files with git", config);
85768
85766
  await _gitjs.gitAdd.call(void 0, {
85769
85767
  changedFiles,
85770
85768
  dryRun: args.dryRun,
@@ -85772,7 +85770,7 @@ async function releaseVersion(config, args) {
85772
85770
  });
85773
85771
  }
85774
85772
  if (_nullishCoalesce(args.gitTag, () => ( _optionalChain([nxReleaseConfig, 'optionalAccess', _283 => _283.version, 'access', _284 => _284.git, 'access', _285 => _285.tag])))) {
85775
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Tagging commit with git", config);
85773
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Tagging commit with git", config);
85776
85774
  for (const tag of gitTagValues) {
85777
85775
  await _gitjs.gitTag.call(void 0, {
85778
85776
  tag,
@@ -85788,8 +85786,8 @@ async function releaseVersion(config, args) {
85788
85786
  projectsVersionData: versionData
85789
85787
  };
85790
85788
  } catch (error) {
85791
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, "A fatal error occurred while determining the Storm Release Version - the process was forced to terminate", config);
85792
- _chunkGLCRW2R7cjs.writeError.call(void 0, `An exception was thrown while determining the Storm Release Version
85789
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, "A fatal error occurred while determining the Storm Release Version - the process was forced to terminate", config);
85790
+ _chunkKX7Y62QYcjs.writeError.call(void 0, `An exception was thrown while determining the Storm Release Version
85793
85791
  - Details: ${error.message}
85794
85792
  - Stacktrace: ${error.stack}`, config);
85795
85793
  throw new Error(`An exception was thrown in the Storm Release Version generator's process
@@ -85800,7 +85798,7 @@ async function releaseVersion(config, args) {
85800
85798
  }
85801
85799
  _chunkKK4YC43Scjs.__name.call(void 0, releaseVersion, "releaseVersion");
85802
85800
  async function runVersionOnProjects(config, projectGraph, nxJson, args, tree, generatorData, projectNames, releaseGroup, versionData) {
85803
- const workspaceRoot3 = _nullishCoalesce(_optionalChain([config, 'optionalAccess', _292 => _292.workspaceRoot]), () => ( _chunkGLCRW2R7cjs.findWorkspaceRoot.call(void 0, )));
85801
+ const workspaceRoot3 = _nullishCoalesce(_optionalChain([config, 'optionalAccess', _292 => _292.workspaceRoot]), () => ( _chunkKX7Y62QYcjs.findWorkspaceRoot.call(void 0, )));
85804
85802
  const generatorOptions = {
85805
85803
  // Always ensure a string to avoid generator schema validation errors
85806
85804
  specifier: _nullishCoalesce(args.specifier, () => ( "")),
@@ -85819,7 +85817,7 @@ async function runVersionOnProjects(config, projectGraph, nxJson, args, tree, ge
85819
85817
  throw new Error(`The version generator ${generatorData.collectionName}:${generatorData.normalizedGeneratorName} returned a function instead of an expected ReleaseVersionGeneratorResult`);
85820
85818
  }
85821
85819
  appendVersionData(versionData, versionResult.data);
85822
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, `Updated version data: ${JSON.stringify(versionData, null, 2)}`, config);
85820
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, `Updated version data: ${JSON.stringify(versionData, null, 2)}`, config);
85823
85821
  return versionResult.callback;
85824
85822
  }
85825
85823
  _chunkKK4YC43Scjs.__name.call(void 0, runVersionOnProjects, "runVersionOnProjects");
@@ -85827,10 +85825,10 @@ function printAndFlushChanges2(config, tree, isDryRun) {
85827
85825
  const changes = tree.listChanges();
85828
85826
  for (const f of changes) {
85829
85827
  if (f.type === "CREATE") {
85830
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, `CREATE ${f.path}${isDryRun ? " [dry-run]" : ""}`, config);
85828
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, `CREATE ${f.path}${isDryRun ? " [dry-run]" : ""}`, config);
85831
85829
  _printchangesjs.printDiff.call(void 0, "", _optionalChain([f, 'access', _293 => _293.content, 'optionalAccess', _294 => _294.toString, 'call', _295 => _295()]) || "");
85832
85830
  } else if (f.type === "UPDATE") {
85833
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, `UPDATE ${f.path}${isDryRun ? " [dry-run]" : ""}`, config);
85831
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, `UPDATE ${f.path}${isDryRun ? " [dry-run]" : ""}`, config);
85834
85832
  const currentContentsOnDisk = _fs.readFileSync.call(void 0, (0, import_devkit.joinPathFragments)(tree.root, f.path)).toString();
85835
85833
  _printchangesjs.printDiff.call(void 0, currentContentsOnDisk, _optionalChain([f, 'access', _296 => _296.content, 'optionalAccess', _297 => _297.toString, 'call', _298 => _298()]) || "");
85836
85834
  } else if (f.type === "DELETE") {
@@ -85902,12 +85900,12 @@ var runRelease = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (co
85902
85900
  process.env.NODE_AUTH_TOKEN = process.env.NPM_TOKEN;
85903
85901
  process.env.NPM_AUTH_TOKEN = process.env.NPM_TOKEN;
85904
85902
  process.env.NPM_CONFIG_PROVENANCE = "true";
85905
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, "Creating workspace Project Graph data...", config);
85903
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, "Creating workspace Project Graph data...", config);
85906
85904
  const nxJson = _nxjsonjs.readNxJson.call(void 0, );
85907
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, "Reading in the workspaces release configuration", config);
85905
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, "Reading in the workspaces release configuration", config);
85908
85906
  const to = options.head || process.env.NX_HEAD;
85909
85907
  const from = options.base || process.env.NX_BASE;
85910
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, `Using the following Git SHAs to determine the release content:
85908
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, `Using the following Git SHAs to determine the release content:
85911
85909
  - From: ${from}
85912
85910
  - To: ${to}
85913
85911
  `, config);
@@ -85919,14 +85917,14 @@ var runRelease = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (co
85919
85917
  }, {});
85920
85918
  }
85921
85919
  const nxReleaseConfig = _chunkP2CHIYIKcjs.defu.call(void 0, nxJson.release, DEFAULT_RELEASE_CONFIG);
85922
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Using the following `nx.json` release configuration values", config);
85923
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, nxReleaseConfig, config);
85920
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Using the following `nx.json` release configuration values", config);
85921
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, nxReleaseConfig, config);
85924
85922
  const releaseChangelog = createAPI(nxReleaseConfig);
85925
85923
  const releasePublish = _publishjs.createAPI.call(void 0, nxReleaseConfig);
85926
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, "Determining the current release versions...", config);
85924
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, "Determining the current release versions...", config);
85927
85925
  const { workspaceVersion, projectsVersionData } = await releaseVersion(config, {
85928
85926
  dryRun: false,
85929
- verbose: _chunkGLCRW2R7cjs.isVerbose.call(void 0, config.logLevel),
85927
+ verbose: _chunkKX7Y62QYcjs.isVerbose.call(void 0, config.logLevel),
85930
85928
  preid: config.preid,
85931
85929
  deleteVersionPlans: false,
85932
85930
  stageChanges: true,
@@ -85939,25 +85937,25 @@ var runRelease = /* @__PURE__ */ _chunkKK4YC43Scjs.__name.call(void 0, async (co
85939
85937
  version: _optionalChain([nxReleaseConfig, 'optionalAccess', _304 => _304.projectsRelationship]) !== "fixed" ? void 0 : workspaceVersion,
85940
85938
  versionData: projectsVersionData,
85941
85939
  dryRun: false,
85942
- verbose: _chunkGLCRW2R7cjs.isVerbose.call(void 0, config.logLevel),
85940
+ verbose: _chunkKX7Y62QYcjs.isVerbose.call(void 0, config.logLevel),
85943
85941
  to,
85944
85942
  from,
85945
85943
  gitCommit: true,
85946
85944
  gitCommitMessage: "release(monorepo): Publish workspace release updates"
85947
85945
  });
85948
- _chunkGLCRW2R7cjs.writeDebug.call(void 0, "Tagging commit with git", config);
85946
+ _chunkKX7Y62QYcjs.writeDebug.call(void 0, "Tagging commit with git", config);
85949
85947
  if (options.skipPublish) {
85950
- _chunkGLCRW2R7cjs.writeWarning.call(void 0, "Skipping publishing packages since `skipPublish` was provided as `true` in the release options.", config);
85948
+ _chunkKX7Y62QYcjs.writeWarning.call(void 0, "Skipping publishing packages since `skipPublish` was provided as `true` in the release options.", config);
85951
85949
  } else {
85952
85950
  const changedProjects = Object.keys(projectsVersionData).filter((key) => _optionalChain([projectsVersionData, 'access', _305 => _305[key], 'optionalAccess', _306 => _306.newVersion]));
85953
85951
  if (changedProjects.length > 0) {
85954
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, `Publishing release for ${changedProjects.length} ${changedProjects.length === 1 ? "project" : "projects"}:
85952
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, `Publishing release for ${changedProjects.length} ${changedProjects.length === 1 ? "project" : "projects"}:
85955
85953
  ${changedProjects.map((changedProject) => ` - ${changedProject}`).join("\n")}
85956
85954
  `, config);
85957
85955
  const result2 = await releasePublish({
85958
85956
  ...options,
85959
85957
  dryRun: !!options.dryRun,
85960
- verbose: _chunkGLCRW2R7cjs.isVerbose.call(void 0, config.logLevel)
85958
+ verbose: _chunkKX7Y62QYcjs.isVerbose.call(void 0, config.logLevel)
85961
85959
  });
85962
85960
  const failedProjects = Object.keys(result2).filter((key) => _optionalChain([result2, 'access', _307 => _307[key], 'optionalAccess', _308 => _308.code]) && _optionalChain([result2, 'access', _309 => _309[key], 'optionalAccess', _310 => _310.code]) > 0);
85963
85961
  if (failedProjects.length > 0) {
@@ -85968,18 +85966,18 @@ ${failedProjects.map((failedProject) => ` - ${failedProject} (Error Code: ${_op
85968
85966
  `);
85969
85967
  }
85970
85968
  } else {
85971
- _chunkGLCRW2R7cjs.writeWarning.call(void 0, "Skipped publishing packages.", config);
85969
+ _chunkKX7Y62QYcjs.writeWarning.call(void 0, "Skipped publishing packages.", config);
85972
85970
  }
85973
85971
  }
85974
- _chunkGLCRW2R7cjs.writeSuccess.call(void 0, "Completed the Storm workspace release process!", config);
85972
+ _chunkKX7Y62QYcjs.writeSuccess.call(void 0, "Completed the Storm workspace release process!", config);
85975
85973
  }, "runRelease");
85976
85974
 
85977
85975
  // src/cli/index.ts
85978
85976
  var _config = {};
85979
85977
  function createProgram(config) {
85980
85978
  _config = config;
85981
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "\u26A1 Running Storm Git Tools", config);
85982
- const root2 = _chunkGLCRW2R7cjs.findWorkspaceRootSafe.call(void 0, process.cwd());
85979
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "\u26A1 Running Storm Git Tools", config);
85980
+ const root2 = _chunkKX7Y62QYcjs.findWorkspaceRootSafe.call(void 0, process.cwd());
85983
85981
  process.env.STORM_WORKSPACE_ROOT ??= root2;
85984
85982
  process.env.NX_WORKSPACE_ROOT_PATH ??= root2;
85985
85983
  root2 && process.chdir(root2);
@@ -86007,14 +86005,14 @@ function createProgram(config) {
86007
86005
  _chunkKK4YC43Scjs.__name.call(void 0, createProgram, "createProgram");
86008
86006
  async function commitAction({ config = "@storm-software/git-tools/commit/config.js", dryRun = false }) {
86009
86007
  try {
86010
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, `\u26A1 Preparing to commit your changes. Please provide the requested details below...`, _config);
86008
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, `\u26A1 Preparing to commit your changes. Please provide the requested details below...`, _config);
86011
86009
  await runCommit(config, dryRun);
86012
- _chunkGLCRW2R7cjs.writeSuccess.call(void 0, `\u{1F389} Storm Commit processing completed successfully!
86010
+ _chunkKX7Y62QYcjs.writeSuccess.call(void 0, `\u{1F389} Storm Commit processing completed successfully!
86013
86011
 
86014
86012
  Note: Please run "pnpm push" to upload these changes to the remote ${_config.name ? _config.name : _config.namespace ? _config.namespace : _config.organization ? _config.organization : "Storm-Software"} Git repository at ${_config.repository}
86015
86013
  `, _config);
86016
86014
  } catch (error) {
86017
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running commit action:
86015
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running commit action:
86018
86016
 
86019
86017
  ${error.message}`, _config);
86020
86018
  throw new Error(error.message, {
@@ -86025,11 +86023,11 @@ ${error.message}`, _config);
86025
86023
  _chunkKK4YC43Scjs.__name.call(void 0, commitAction, "commitAction");
86026
86024
  async function readmeAction(options) {
86027
86025
  try {
86028
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "\u26A1 Formatting the workspace's README.md files", _config);
86026
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "\u26A1 Formatting the workspace's README.md files", _config);
86029
86027
  await runReadme(options);
86030
- _chunkGLCRW2R7cjs.writeSuccess.call(void 0, "Formatting of the workspace's README.md files is complete\n", _config);
86028
+ _chunkKX7Y62QYcjs.writeSuccess.call(void 0, "Formatting of the workspace's README.md files is complete\n", _config);
86031
86029
  } catch (error) {
86032
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running README format action:
86030
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running README format action:
86033
86031
 
86034
86032
  ${error.message}`);
86035
86033
  throw new Error(error.message, {
@@ -86040,16 +86038,16 @@ ${error.message}`);
86040
86038
  _chunkKK4YC43Scjs.__name.call(void 0, readmeAction, "readmeAction");
86041
86039
  async function releaseAction({ project, base, head, dryRun }) {
86042
86040
  try {
86043
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "\u26A1 Running the Storm Release and Publish process on the workspace", _config);
86041
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "\u26A1 Running the Storm Release and Publish process on the workspace", _config);
86044
86042
  await runRelease(_config, {
86045
86043
  dryRun,
86046
86044
  project,
86047
86045
  base,
86048
86046
  head
86049
86047
  });
86050
- _chunkGLCRW2R7cjs.writeSuccess.call(void 0, "Release completed successfully!\n", _config);
86048
+ _chunkKX7Y62QYcjs.writeSuccess.call(void 0, "Release completed successfully!\n", _config);
86051
86049
  } catch (error) {
86052
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running release action:
86050
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running release action:
86053
86051
 
86054
86052
  ${error.message} ${error.stack ? `
86055
86053
 
@@ -86063,15 +86061,15 @@ Stacktrace: ${error.stack}` : ""}`, _config);
86063
86061
  _chunkKK4YC43Scjs.__name.call(void 0, releaseAction, "releaseAction");
86064
86062
  async function commitLintAction({ config, message: message2, file }) {
86065
86063
  try {
86066
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, `\u26A1 Linting the ${_config.repository ? _config.repository : _config.namespace ? _config.namespace : _config.name ? _config.name : _config.organization ? _config.organization : "Storm-Software"} repository's commit messages.`, _config);
86064
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, `\u26A1 Linting the ${_config.repository ? _config.repository : _config.namespace ? _config.namespace : _config.name ? _config.name : _config.organization ? _config.organization : "Storm-Software"} repository's commit messages.`, _config);
86067
86065
  await runCommitLint(_config, {
86068
86066
  config,
86069
86067
  message: message2,
86070
86068
  file
86071
86069
  });
86072
- _chunkGLCRW2R7cjs.writeSuccess.call(void 0, "Linting the commit messages completed successfully!\n", _config);
86070
+ _chunkKX7Y62QYcjs.writeSuccess.call(void 0, "Linting the commit messages completed successfully!\n", _config);
86073
86071
  } catch (error) {
86074
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while linting the commit messages:
86072
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while linting the commit messages:
86075
86073
 
86076
86074
  ${error.message}`, _config);
86077
86075
  throw new Error(error.message, {
@@ -86083,15 +86081,15 @@ _chunkKK4YC43Scjs.__name.call(void 0, commitLintAction, "commitLintAction");
86083
86081
 
86084
86082
  // bin/git.ts
86085
86083
  void (async () => {
86086
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
86084
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
86087
86085
  try {
86088
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
86086
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
86089
86087
  const program2 = createProgram(config);
86090
86088
  await program2.parseAsync(process.argv);
86091
- _chunkGLCRW2R7cjs.writeSuccess.call(void 0, `\u{1F389} Git ${process.argv && process.argv.length >= 3 && process.argv[2] ? process.argv[2] : "tool"} processing completed successfully!`, config);
86092
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
86089
+ _chunkKX7Y62QYcjs.writeSuccess.call(void 0, `\u{1F389} Git ${process.argv && process.argv.length >= 3 && process.argv[2] ? process.argv[2] : "tool"} processing completed successfully!`, config);
86090
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
86093
86091
  } catch (error) {
86094
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
86092
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
86095
86093
  process.exit(1);
86096
86094
  }
86097
86095
  })();
package/bin/git.js CHANGED
@@ -21,7 +21,7 @@ import {
21
21
  writeInfo,
22
22
  writeSuccess,
23
23
  writeWarning
24
- } from "./chunk-6ZE252BR.js";
24
+ } from "./chunk-YTMPCK35.js";
25
25
  import {
26
26
  defu
27
27
  } from "./chunk-5L6OQPTU.js";
@@ -85477,11 +85477,9 @@ ${workspaceConfig.release.header || ""}
85477
85477
 
85478
85478
  We at [${titleCase(workspaceConfig.organization)}](${workspaceConfig.homepage}) are very excited to announce the v${releaseVersion2.rawVersion} release of the ${projectName ? titleCase(projectName) : workspaceConfig.name ? titleCase(workspaceConfig.name) : "Storm Software"} project! \u{1F680}
85479
85479
 
85480
- These changes are released under the ${workspaceConfig.license.includes("license") ? workspaceConfig.license : `${workspaceConfig.license} license`}. You can find more details on [our licensing page](${workspaceConfig.licensing}).
85480
+ These changes are released under the ${workspaceConfig.license.includes("license") ? workspaceConfig.license : `${workspaceConfig.license} license`}. You can find more details on [our licensing page](${workspaceConfig.licensing}). You can find guides, API references, and other documentation around this release (and much more) on [our documentation site](${workspaceConfig.docs}).
85481
85481
 
85482
- You can find guides, API references, and other documentation around this release (and much more) on [our documentation site](${workspaceConfig.docs}).
85483
-
85484
- If you have any questions or comments, feel free to reach out to the team on [Discord](${workspaceConfig.account.discord}) or [our contact page](${workspaceConfig.contact}). Please help us spread the word by [tweeting](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@${workspaceConfig.account.twitter}%20release%20${projectName ? `${titleCase(projectName)?.replaceAll(" ", "%20")}%20` : ""}v${releaseVersion2.rawVersion}%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/${workspaceConfig.organization}/${workspaceConfig.name}/releases/tag/${releaseVersion2.gitTag}) about this release!
85482
+ If you have any questions or comments, feel free to reach out to the team on [Discord](${workspaceConfig.account.discord}) or [our contact page](${workspaceConfig.contact}). Please help us spread the word by giving [this repository](https://github.com/${workspaceConfig.organization}/${workspaceConfig.name}) a star \u2B50 on GitHub or [posting on X (Twitter)](https://x.com/intent/tweet?text=Check%20out%20the%20latest%20@${workspaceConfig.account.twitter}%20release%20${projectName ? `${titleCase(projectName)?.replaceAll(" ", "%20")}%20` : ""}v${releaseVersion2.rawVersion}%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/${workspaceConfig.organization}/${workspaceConfig.name}/releases/tag/${releaseVersion2.gitTag}) about this release!
85485
85483
 
85486
85484
  ## Release Notes
85487
85485
 
@@ -13,7 +13,7 @@ var _chunkFNIN2HF7cjs = require('./chunk-FNIN2HF7.cjs');
13
13
 
14
14
 
15
15
 
16
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
16
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
17
17
  require('./chunk-P2CHIYIK.cjs');
18
18
  require('./chunk-HI7REZLL.cjs');
19
19
  require('./chunk-LUO23224.cjs');
@@ -27,23 +27,23 @@ var _chunkKK4YC43Scjs = require('./chunk-KK4YC43S.cjs');
27
27
  // bin/post-checkout.ts
28
28
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
29
29
  void (async () => {
30
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
30
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
31
31
  try {
32
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
33
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running post-checkout hook...", config);
32
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
33
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running post-checkout hook...", config);
34
34
  _chunkMJ243FGHcjs.checkPackageVersion.call(void 0, _optionalChain([process, 'access', _ => _.argv, 'optionalAccess', _2 => _2.slice, 'call', _3 => _3(1)]));
35
35
  try {
36
36
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git-lfs version");
37
37
  } catch (error) {
38
- _chunkGLCRW2R7cjs.writeError.call(void 0, `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.
38
+ _chunkKX7Y62QYcjs.writeError.call(void 0, `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.
39
39
  Error: ${_optionalChain([error, 'optionalAccess', _4 => _4.message])}`, config);
40
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
40
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
41
41
  }
42
42
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git lfs post-checkout");
43
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
43
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
44
44
  } catch (error) {
45
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
46
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
45
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
46
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
47
47
  process.exit(1);
48
48
  }
49
49
  })();
@@ -13,7 +13,7 @@ import {
13
13
  writeError,
14
14
  writeFatal,
15
15
  writeInfo
16
- } from "./chunk-6ZE252BR.js";
16
+ } from "./chunk-YTMPCK35.js";
17
17
  import "./chunk-5L6OQPTU.js";
18
18
  import "./chunk-44NY3AUB.js";
19
19
  import "./chunk-7TOVDNAL.js";
@@ -13,7 +13,7 @@ var _chunkFNIN2HF7cjs = require('./chunk-FNIN2HF7.cjs');
13
13
 
14
14
 
15
15
 
16
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
16
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
17
17
  require('./chunk-P2CHIYIK.cjs');
18
18
  require('./chunk-HI7REZLL.cjs');
19
19
  require('./chunk-LUO23224.cjs');
@@ -27,23 +27,23 @@ var _chunkKK4YC43Scjs = require('./chunk-KK4YC43S.cjs');
27
27
  // bin/post-commit.ts
28
28
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
29
29
  void (async () => {
30
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
30
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
31
31
  try {
32
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
33
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running post-commit hook...", config);
32
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
33
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running post-commit hook...", config);
34
34
  _chunkMJ243FGHcjs.checkPackageVersion.call(void 0, _optionalChain([process, 'access', _ => _.argv, 'optionalAccess', _2 => _2.slice, 'call', _3 => _3(1)]));
35
35
  try {
36
36
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git-lfs version");
37
37
  } catch (error) {
38
- _chunkGLCRW2R7cjs.writeError.call(void 0, `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.
38
+ _chunkKX7Y62QYcjs.writeError.call(void 0, `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.
39
39
  Error: ${_optionalChain([error, 'optionalAccess', _4 => _4.message])}`, config);
40
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
40
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
41
41
  }
42
42
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git lfs post-commit");
43
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
43
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
44
44
  } catch (error) {
45
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
46
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
45
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
46
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
47
47
  process.exit(1);
48
48
  }
49
49
  })();
@@ -13,7 +13,7 @@ import {
13
13
  writeError,
14
14
  writeFatal,
15
15
  writeInfo
16
- } from "./chunk-6ZE252BR.js";
16
+ } from "./chunk-YTMPCK35.js";
17
17
  import "./chunk-5L6OQPTU.js";
18
18
  import "./chunk-44NY3AUB.js";
19
19
  import "./chunk-7TOVDNAL.js";
@@ -13,7 +13,7 @@ var _chunkFNIN2HF7cjs = require('./chunk-FNIN2HF7.cjs');
13
13
 
14
14
 
15
15
 
16
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
16
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
17
17
  require('./chunk-P2CHIYIK.cjs');
18
18
  require('./chunk-HI7REZLL.cjs');
19
19
  require('./chunk-LUO23224.cjs');
@@ -27,23 +27,23 @@ var _chunkKK4YC43Scjs = require('./chunk-KK4YC43S.cjs');
27
27
  // bin/post-merge.ts
28
28
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
29
29
  void (async () => {
30
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
30
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
31
31
  try {
32
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
33
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running post-merge hook...", config);
32
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
33
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running post-merge hook...", config);
34
34
  _chunkMJ243FGHcjs.checkPackageVersion.call(void 0, _optionalChain([process, 'access', _ => _.argv, 'optionalAccess', _2 => _2.slice, 'call', _3 => _3(1)]));
35
35
  try {
36
36
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git-lfs version");
37
37
  } catch (error) {
38
- _chunkGLCRW2R7cjs.writeError.call(void 0, `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.
38
+ _chunkKX7Y62QYcjs.writeError.call(void 0, `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.
39
39
  Error: ${_optionalChain([error, 'optionalAccess', _4 => _4.message])}`, config);
40
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
40
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
41
41
  }
42
42
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git lfs post-merge");
43
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
43
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
44
44
  } catch (error) {
45
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
46
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
45
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
46
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
47
47
  process.exit(1);
48
48
  }
49
49
  })();
package/bin/post-merge.js CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  writeError,
14
14
  writeFatal,
15
15
  writeInfo
16
- } from "./chunk-6ZE252BR.js";
16
+ } from "./chunk-YTMPCK35.js";
17
17
  import "./chunk-5L6OQPTU.js";
18
18
  import "./chunk-44NY3AUB.js";
19
19
  import "./chunk-7TOVDNAL.js";
@@ -11,7 +11,7 @@ var _chunkMJ243FGHcjs = require('./chunk-MJ243FGH.cjs');
11
11
 
12
12
 
13
13
 
14
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
14
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
15
15
  require('./chunk-P2CHIYIK.cjs');
16
16
  require('./chunk-HI7REZLL.cjs');
17
17
  require('./chunk-LUO23224.cjs');
@@ -25,19 +25,19 @@ var _chunkKK4YC43Scjs = require('./chunk-KK4YC43S.cjs');
25
25
  // bin/pre-commit.ts
26
26
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
27
27
  void (async () => {
28
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
28
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
29
29
  try {
30
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
31
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running pre-commit hook...", config);
30
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
31
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running pre-commit hook...", config);
32
32
  _chunkMJ243FGHcjs.checkPackageVersion.call(void 0, process.argv.slice(1));
33
33
  if (_chunkMJ243FGHcjs.isPackageVersionChanged.call(void 0, _optionalChain([process, 'access', _ => _.argv, 'optionalAccess', _2 => _2.slice, 'call', _3 => _3(1)]))) {
34
- _chunkGLCRW2R7cjs.writeError.call(void 0, "Please regenerate the package lock file before committing...", config);
35
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
34
+ _chunkKX7Y62QYcjs.writeError.call(void 0, "Please regenerate the package lock file before committing...", config);
35
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
36
36
  }
37
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
37
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
38
38
  } catch (error) {
39
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
40
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
39
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
40
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
41
41
  process.exit(1);
42
42
  }
43
43
  })();
package/bin/pre-commit.js CHANGED
@@ -11,7 +11,7 @@ import {
11
11
  writeError,
12
12
  writeFatal,
13
13
  writeInfo
14
- } from "./chunk-6ZE252BR.js";
14
+ } from "./chunk-YTMPCK35.js";
15
15
  import "./chunk-5L6OQPTU.js";
16
16
  import "./chunk-44NY3AUB.js";
17
17
  import "./chunk-7TOVDNAL.js";
@@ -9,7 +9,7 @@ var _chunkFNIN2HF7cjs = require('./chunk-FNIN2HF7.cjs');
9
9
 
10
10
 
11
11
 
12
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
12
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
13
13
  require('./chunk-P2CHIYIK.cjs');
14
14
  require('./chunk-HI7REZLL.cjs');
15
15
  require('./chunk-LUO23224.cjs');
@@ -23,19 +23,19 @@ var _chunkKK4YC43Scjs = require('./chunk-KK4YC43S.cjs');
23
23
  // bin/pre-install.ts
24
24
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
25
25
  void (async () => {
26
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
26
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
27
27
  try {
28
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
29
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running pre-install hook...", config);
28
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
29
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running pre-install hook...", config);
30
30
  if (Boolean(process.env.CI) || Boolean(process.env.STORM_CI)) {
31
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Skipping pre-install for CI process...", config);
32
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
31
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Skipping pre-install for CI process...", config);
32
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
33
33
  }
34
34
  _chunkFNIN2HF7cjs.run.call(void 0, config, "npx -y only-allow pnpm");
35
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
35
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
36
36
  } catch (error) {
37
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
38
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
37
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
38
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
39
39
  process.exit(1);
40
40
  }
41
41
  })();
@@ -9,7 +9,7 @@ import {
9
9
  handleProcess,
10
10
  writeFatal,
11
11
  writeInfo
12
- } from "./chunk-6ZE252BR.js";
12
+ } from "./chunk-YTMPCK35.js";
13
13
  import "./chunk-5L6OQPTU.js";
14
14
  import "./chunk-44NY3AUB.js";
15
15
  import "./chunk-7TOVDNAL.js";
package/bin/pre-push.cjs CHANGED
@@ -14,7 +14,7 @@ var _chunkFNIN2HF7cjs = require('./chunk-FNIN2HF7.cjs');
14
14
 
15
15
 
16
16
 
17
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
17
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
18
18
  require('./chunk-P2CHIYIK.cjs');
19
19
  require('./chunk-HI7REZLL.cjs');
20
20
  require('./chunk-LUO23224.cjs');
@@ -31,12 +31,12 @@ var _fs = require('fs'); var _fs2 = _interopRequireDefault(_fs);
31
31
  var _promises = require('fs/promises');
32
32
  var _path = require('path'); var _path2 = _interopRequireDefault(_path);
33
33
  void (async () => {
34
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
34
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
35
35
  try {
36
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
37
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running pre-push hook...", config);
36
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
37
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running pre-push hook...", config);
38
38
  _chunkMJ243FGHcjs.checkPackageVersion.call(void 0, _optionalChain([process, 'access', _ => _.argv, 'optionalAccess', _2 => _2.slice, 'call', _3 => _3(1)]));
39
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "\u{1F512}\u{1F512}\u{1F512} Validating lock files \u{1F512}\u{1F512}\u{1F512}\n", config);
39
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "\u{1F512}\u{1F512}\u{1F512} Validating lock files \u{1F512}\u{1F512}\u{1F512}\n", config);
40
40
  const errors = [];
41
41
  if (_fs2.default.existsSync(_path2.default.join(_nullishCoalesce(config.workspaceRoot, () => ( "./")), "package-lock.json"))) {
42
42
  errors.push('Invalid occurrence of "package-lock.json" file. Please remove it and use only "pnpm-lock.yaml"');
@@ -58,26 +58,26 @@ void (async () => {
58
58
  errors.push('The "pnpm-lock.yaml" does not exist or cannot be read');
59
59
  }
60
60
  if (errors.length > 0) {
61
- _chunkGLCRW2R7cjs.writeError.call(void 0, "\u274C Lock file validation failed", config);
61
+ _chunkKX7Y62QYcjs.writeError.call(void 0, "\u274C Lock file validation failed", config);
62
62
  for (const error of errors) {
63
63
  console.error(error);
64
64
  }
65
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
65
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
66
66
  }
67
- _chunkGLCRW2R7cjs.writeSuccess.call(void 0, "Lock file is valid \u2705", config);
67
+ _chunkKX7Y62QYcjs.writeSuccess.call(void 0, "Lock file is valid \u2705", config);
68
68
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git lfs pre-push origin");
69
69
  try {
70
70
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git-lfs version");
71
71
  } catch (error) {
72
- _chunkGLCRW2R7cjs.writeError.call(void 0, `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
+ _chunkKX7Y62QYcjs.writeError.call(void 0, `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.
73
73
  Error: ${_optionalChain([error, 'optionalAccess', _4 => _4.message])}`, config);
74
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
74
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
75
75
  }
76
76
  _chunkFNIN2HF7cjs.run.call(void 0, config, "git lfs pre-push origin");
77
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
77
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
78
78
  } catch (error) {
79
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
80
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
79
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
80
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
81
81
  process.exit(1);
82
82
  }
83
83
  })();
package/bin/pre-push.js CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  writeFatal,
15
15
  writeInfo,
16
16
  writeSuccess
17
- } from "./chunk-6ZE252BR.js";
17
+ } from "./chunk-YTMPCK35.js";
18
18
  import "./chunk-5L6OQPTU.js";
19
19
  import "./chunk-44NY3AUB.js";
20
20
  import "./chunk-7TOVDNAL.js";
package/bin/prepare.cjs CHANGED
@@ -9,7 +9,7 @@ var _chunkFNIN2HF7cjs = require('./chunk-FNIN2HF7.cjs');
9
9
 
10
10
 
11
11
 
12
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
12
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
13
13
  require('./chunk-P2CHIYIK.cjs');
14
14
  require('./chunk-HI7REZLL.cjs');
15
15
  require('./chunk-LUO23224.cjs');
@@ -23,17 +23,17 @@ var _chunkKK4YC43Scjs = require('./chunk-KK4YC43S.cjs');
23
23
  // bin/prepare.ts
24
24
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
25
25
  void (async () => {
26
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
26
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
27
27
  try {
28
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
29
- _chunkGLCRW2R7cjs.writeInfo.call(void 0, "Running prepare hook...", config);
28
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
29
+ _chunkKX7Y62QYcjs.writeInfo.call(void 0, "Running prepare hook...", config);
30
30
  if (!process.env.CI && !process.env.STORM_CI) {
31
31
  _chunkFNIN2HF7cjs.run.call(void 0, config, "lefthook install");
32
32
  }
33
- _chunkGLCRW2R7cjs.exitWithSuccess.call(void 0, config);
33
+ _chunkKX7Y62QYcjs.exitWithSuccess.call(void 0, config);
34
34
  } catch (error) {
35
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
36
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
35
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
36
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
37
37
  process.exit(1);
38
38
  }
39
39
  })();
package/bin/prepare.js CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  handleProcess,
10
10
  writeFatal,
11
11
  writeInfo
12
- } from "./chunk-6ZE252BR.js";
12
+ } from "./chunk-YTMPCK35.js";
13
13
  import "./chunk-5L6OQPTU.js";
14
14
  import "./chunk-44NY3AUB.js";
15
15
  import "./chunk-7TOVDNAL.js";
@@ -7,7 +7,7 @@ var _chunkMJ243FGHcjs = require('./chunk-MJ243FGH.cjs');
7
7
 
8
8
 
9
9
 
10
- var _chunkGLCRW2R7cjs = require('./chunk-GLCRW2R7.cjs');
10
+ var _chunkKX7Y62QYcjs = require('./chunk-KX7Y62QY.cjs');
11
11
  require('./chunk-P2CHIYIK.cjs');
12
12
  require('./chunk-HI7REZLL.cjs');
13
13
  require('./chunk-LUO23224.cjs');
@@ -21,13 +21,13 @@ var _chunkKK4YC43Scjs = require('./chunk-KK4YC43S.cjs');
21
21
  // bin/version-warning.ts
22
22
  _chunkKK4YC43Scjs.init_cjs_shims.call(void 0, );
23
23
  void (async () => {
24
- const config = await _chunkGLCRW2R7cjs.getConfig.call(void 0, );
24
+ const config = await _chunkKX7Y62QYcjs.getConfig.call(void 0, );
25
25
  try {
26
- _chunkGLCRW2R7cjs.handleProcess.call(void 0, config);
26
+ _chunkKX7Y62QYcjs.handleProcess.call(void 0, config);
27
27
  _chunkMJ243FGHcjs.checkPackageVersion.call(void 0, process.argv.slice(1));
28
28
  } catch (error) {
29
- _chunkGLCRW2R7cjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
30
- _chunkGLCRW2R7cjs.exitWithError.call(void 0, config);
29
+ _chunkKX7Y62QYcjs.writeFatal.call(void 0, `A fatal error occurred while running the program: ${error.message}`, config);
30
+ _chunkKX7Y62QYcjs.exitWithError.call(void 0, config);
31
31
  process.exit(1);
32
32
  }
33
33
  })();
@@ -7,7 +7,7 @@ import {
7
7
  getConfig,
8
8
  handleProcess,
9
9
  writeFatal
10
- } from "./chunk-6ZE252BR.js";
10
+ } from "./chunk-YTMPCK35.js";
11
11
  import "./chunk-5L6OQPTU.js";
12
12
  import "./chunk-44NY3AUB.js";
13
13
  import "./chunk-7TOVDNAL.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.101.0",
3
+ "version": "2.101.2",
4
4
  "type": "module",
5
5
  "description": "Tools for managing Git repositories within a Nx workspace.",
6
6
  "repository": {