skilld 0.11.0 → 0.11.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.
package/dist/cli.mjs CHANGED
@@ -4299,6 +4299,7 @@ runMain(defineCommand({
4299
4299
  }
4300
4300
  selected = choice;
4301
4301
  }
4302
+ const { syncCommand } = await Promise.resolve().then(() => sync_exports);
4302
4303
  await syncCommand(state, {
4303
4304
  packages: selected,
4304
4305
  global: false,
@@ -4432,7 +4433,8 @@ runMain(defineCommand({
4432
4433
  if (p.isCancel(choice) || choice.length === 0) continue;
4433
4434
  selected = choice;
4434
4435
  }
4435
- return syncCommand(state, {
4436
+ const { syncCommand: sync } = await Promise.resolve().then(() => sync_exports);
4437
+ return sync(state, {
4436
4438
  packages: selected,
4437
4439
  global: false,
4438
4440
  agent: currentAgent,
@@ -4454,7 +4456,8 @@ runMain(defineCommand({
4454
4456
  initialValues: state.outdated.map((s) => s.packageName || s.name)
4455
4457
  });
4456
4458
  if (p.isCancel(selected) || selected.length === 0) continue;
4457
- return syncCommand(state, {
4459
+ const { syncCommand: syncUpdate } = await Promise.resolve().then(() => sync_exports);
4460
+ return syncUpdate(state, {
4458
4461
  packages: selected,
4459
4462
  global: false,
4460
4463
  agent: currentAgent,
@@ -4468,9 +4471,11 @@ runMain(defineCommand({
4468
4471
  yes: false
4469
4472
  });
4470
4473
  continue;
4471
- case "search":
4474
+ case "search": {
4475
+ const { interactiveSearch } = await Promise.resolve().then(() => search_interactive_exports);
4472
4476
  await interactiveSearch();
4473
4477
  continue;
4478
+ }
4474
4479
  case "info":
4475
4480
  await statusCommand({ global: false });
4476
4481
  continue;