@alook/cli 0.0.52 → 0.0.54

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -530,8 +530,9 @@ Daemon (pid ${daemonPid}) notified — workspace will be active shortly.`);
530
530
  Daemon is running but could not be notified. Restart it to pick up the new workspace.`);
531
531
  }
532
532
  } else {
533
+ const startCmd = isDev() ? `${cmdPrefix()} daemon start --foreground` : `${cmdPrefix()} daemon start`;
533
534
  console.log();
534
- console.log(`Run '${cmdPrefix()} daemon start --foreground' to start the daemon.`);
535
+ console.log(`Run '${startCmd}' to start the daemon.`);
535
536
  }
536
537
  });
537
538
  return cmd;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alook/cli",
3
- "version": "0.0.52",
3
+ "version": "0.0.54",
4
4
  "description": "Alook CLI — Enable Your Person Colleague",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/alookai/alook#readme",