adhdev 0.5.0 → 0.5.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-entrypoint.js +4 -4
- package/dist/cli-entrypoint.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -29421,7 +29421,7 @@ async function startDaemonFlow() {
|
|
|
29421
29421
|
const { isDaemonRunning: isDaemonRunning2 } = await Promise.resolve().then(() => (init_adhdev_daemon(), adhdev_daemon_exports));
|
|
29422
29422
|
if (isDaemonRunning2()) {
|
|
29423
29423
|
console.log(import_chalk2.default.green(" \u2713 Daemon is already running"));
|
|
29424
|
-
console.log(import_chalk2.default.gray(" Dashboard: https://
|
|
29424
|
+
console.log(import_chalk2.default.gray(" Dashboard: https://adhf.dev/dashboard\n"));
|
|
29425
29425
|
return;
|
|
29426
29426
|
}
|
|
29427
29427
|
const { startDaemon } = await import_inquirer.default.prompt([
|
|
@@ -29456,11 +29456,11 @@ async function startDaemonFlow() {
|
|
|
29456
29456
|
await new Promise((r) => setTimeout(r, 2e3));
|
|
29457
29457
|
if (isDaemonRunning2()) {
|
|
29458
29458
|
daemonSpinner.succeed("Daemon started");
|
|
29459
|
-
console.log(import_chalk2.default.gray(" Dashboard: https://
|
|
29459
|
+
console.log(import_chalk2.default.gray(" Dashboard: https://adhf.dev/dashboard"));
|
|
29460
29460
|
console.log(import_chalk2.default.gray(` Logs: ${logPath}`));
|
|
29461
29461
|
} else {
|
|
29462
29462
|
daemonSpinner.succeed("Daemon starting in background");
|
|
29463
|
-
console.log(import_chalk2.default.gray(" Dashboard: https://
|
|
29463
|
+
console.log(import_chalk2.default.gray(" Dashboard: https://adhf.dev/dashboard"));
|
|
29464
29464
|
console.log(import_chalk2.default.gray(` Logs: ${logPath}`));
|
|
29465
29465
|
}
|
|
29466
29466
|
console.log();
|