@grunnverk/kodrdriv 1.5.11 → 1.5.12-dev.0

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/dist/constants.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import os from 'os';
2
2
  import path from 'path';
3
3
 
4
- /** Version string populated at build time with git and system information */ const VERSION = '1.5.11 (HEAD/7e46b44 T:v1.5.11 2026-01-30 23:37:49 -0800) linux x64 v24.13.0';
4
+ /** Version string populated at build time with git and system information */ const VERSION = '1.5.12-dev.0 (working/187dcf0 2026-01-31 11:55:21 -0800) linux x64 v24.13.0';
5
5
  /** The program name used in CLI help and error messages */ const PROGRAM_NAME = 'kodrdriv';
6
6
  const DEFAULT_OVERRIDES = false;
7
7
  const DATE_FORMAT_YEAR_MONTH_DAY_HOURS_MINUTES_SECONDS_MILLISECONDS = 'YYYY-MM-DD-HHmmss.SSS';
@@ -13915,7 +13915,7 @@ import path2 from "path";
13915
13915
  // src/constants.ts
13916
13916
  import os from "os";
13917
13917
  import path from "path";
13918
- var VERSION = "1.5.11 (HEAD/7e46b44 T:v1.5.11 2026-01-30 23:37:49 -0800) linux x64 v24.13.0";
13918
+ var VERSION = "1.5.12-dev.0 (working/187dcf0 2026-01-31 11:55:21 -0800) linux x64 v24.13.0";
13919
13919
  var PROGRAM_NAME = "kodrdriv";
13920
13920
  var DATE_FORMAT_YEAR_MONTH_DAY_HOURS_MINUTES_SECONDS_MILLISECONDS = "YYYY-MM-DD-HHmmss.SSS";
13921
13921
  var DEFAULT_OUTPUT_DIRECTORY = "output/kodrdriv";
@@ -15161,12 +15161,12 @@ async function executeCheckDevelopment(args, _context) {
15161
15161
  );
15162
15162
  }
15163
15163
  try {
15164
- await run("git merge --abort", { cwd: pkgDir });
15164
+ await run("git merge --abort", { cwd: pkgDir, suppressErrorLogging: true });
15165
15165
  } catch {
15166
15166
  }
15167
15167
  } catch (mergeError) {
15168
15168
  try {
15169
- await run("git merge --abort", { cwd: pkgDir });
15169
+ await run("git merge --abort", { cwd: pkgDir, suppressErrorLogging: true });
15170
15170
  } catch {
15171
15171
  }
15172
15172
  if (mergeError.message?.includes("CONFLICT") || mergeError.stderr?.includes("CONFLICT")) {
@@ -15196,7 +15196,7 @@ async function executeCheckDevelopment(args, _context) {
15196
15196
  } else {
15197
15197
  const baseVersion = version2.split("-")[0];
15198
15198
  try {
15199
- const { stdout } = await run(`npm view ${pkgName}@${baseVersion} version`, { cwd: pkgDir });
15199
+ const { stdout } = await run(`npm view ${pkgName}@${baseVersion} version`, { cwd: pkgDir, suppressErrorLogging: true });
15200
15200
  if (stdout.trim() === baseVersion) {
15201
15201
  checks.devVersion.passed = false;
15202
15202
  checks.devVersion.issues.push(