aiex-cli 0.0.6 → 0.0.7-beta.1

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.
@@ -3,7 +3,7 @@ import process from "node:process";
3
3
  import { readFileSync } from "jsonfile";
4
4
  import fs from "node:fs";
5
5
 
6
- //#region src/core/completions.ts
6
+ //#region src/infrastructure/completion/completions.ts
7
7
  const LEADING_DASHES = /^-+/;
8
8
  function getArgNames(cmd) {
9
9
  if (!cmd.args) return [];
@@ -8,7 +8,7 @@ import { readFile, writeFile } from "jsonfile";
8
8
  import * as esbuild from "esbuild";
9
9
  import lockfile from "proper-lockfile";
10
10
 
11
- //#region src/core/schema-sqlite/migration-name.ts
11
+ //#region src/infrastructure/schema/migration-name.ts
12
12
  function sanitizeMigrationName(name) {
13
13
  if (!name) return void 0;
14
14
  return name.trim().toLowerCase().replace(/[^a-z0-9_\s-]/g, "_").replace(/[\s-]+/g, "_").replace(/_+/g, "_").replace(/^_+|_+$/g, "") || void 0;