scai 0.1.114 → 0.1.116

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.
@@ -1,15 +0,0 @@
1
- // src/commands/MigrateCmd.ts
2
- import path from 'path';
3
- import { pathToFileURL } from 'url';
4
- import { fileURLToPath } from 'url';
5
- export async function runMigrateCommand() {
6
- const scriptPath = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../../dist/scripts/migrateDb.js' // compiled output
7
- );
8
- try {
9
- await import(pathToFileURL(scriptPath).href);
10
- }
11
- catch (err) {
12
- console.error('❌ Failed to run migration script:', err);
13
- process.exit(1);
14
- }
15
- }