@alook/cli 0.0.53 → 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.
- package/dist/index.js +2 -1
- 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 '${
|
|
535
|
+
console.log(`Run '${startCmd}' to start the daemon.`);
|
|
535
536
|
}
|
|
536
537
|
});
|
|
537
538
|
return cmd;
|