@primeinc/swarm 0.57.8-beta.0 → 0.57.10-beta.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/bin/swarm.ts CHANGED
@@ -38,7 +38,7 @@ import {
38
38
  checkBeadsMigrationNeeded,
39
39
  migrateBeadsToHive,
40
40
  mergeHistoricBeads,
41
- importJsonlToPGLite,
41
+ importJsonlToLibSQL,
42
42
  ensureHiveDirectory,
43
43
  getHiveAdapter,
44
44
  } from "../dist/hive.js";
@@ -2429,9 +2429,9 @@ async function setup(forceReinstall = false, nonInteractive = false) {
2429
2429
  migrateSpinner.stop("No historic cells to merge");
2430
2430
  }
2431
2431
 
2432
- // Import JSONL into PGLite database
2432
+ // Import JSONL into libSQL database
2433
2433
  migrateSpinner.start("Importing to database...");
2434
- const importResult = await importJsonlToPGLite(cwd);
2434
+ const importResult = await importJsonlToLibSQL(cwd);
2435
2435
  migrateSpinner.stop("Database import complete");
2436
2436
  if (importResult.imported > 0 || importResult.updated > 0) {
2437
2437
  p.log.success(`Database: ${importResult.imported} imported, ${importResult.updated} updated`);