ohmydashboard 0.1.2 → 0.1.4

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/cli.js +11 -6
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -45,8 +45,8 @@ const child_process_1 = require("child_process");
45
45
  const os_1 = __importDefault(require("os"));
46
46
  const https_1 = __importDefault(require("https"));
47
47
  const promises_1 = require("stream/promises");
48
- const DEFAULT_REPO = "https://github.com/gvrizzo/ohmydashboard.git";
49
- const DEFAULT_SSH_REPO = "git@github.com:gvrizzo/ohmydashboard.git";
48
+ const DEFAULT_REPO = "https://github.com/guivr/ohmydashboard.git";
49
+ const DEFAULT_SSH_REPO = "git@github.com:guivr/ohmydashboard.git";
50
50
  const DEFAULT_DIR = "ohmydashboard";
51
51
  const DEFAULT_BRANCH = "main";
52
52
  function parseArgs(args) {
@@ -188,8 +188,13 @@ async function runCli(args, deps) {
188
188
  }
189
189
  await exec("pnpm", ["install"], { cwd: targetPath });
190
190
  log("");
191
- log("Setup complete!");
192
- log(`cd ${targetDir}`);
193
- log("pnpm dev");
194
- log("Open http://localhost:3000 and connect integrations at /settings");
191
+ log("┌──────────────────────────────────────────────┐");
192
+ log("│ ✅ OhMyDashboard is ready │");
193
+ log("└──────────────────────────────────────────────┘");
194
+ log("");
195
+ log("Next steps:");
196
+ log(` 1) cd ${targetDir}`);
197
+ log(" 2) pnpm dev");
198
+ log("");
199
+ log("Then open http://localhost:3000 and connect integrations at /settings");
195
200
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ohmydashboard",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "private": false,
5
5
  "description": "OhMyDashboard CLI",
6
6
  "license": "MIT",