@unlikeotherai/unloved 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -572,6 +572,9 @@ async function startCommand(args2) {
572
572
  const sessionName = args2.positional[0] ?? await detectTmuxSession() ?? void 0;
573
573
  if (await isPortInUse(port)) {
574
574
  console.log(`unloved is already running at http://localhost:${port}`);
575
+ if (!args2.flags["no-open"]) {
576
+ openBrowser(`http://localhost:${port}`);
577
+ }
575
578
  process.exit(0);
576
579
  }
577
580
  const homeDir = await ensureHome();
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@unlikeotherai/unloved",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Local multi-device AI coding cockpit",
5
5
  "type": "module",
6
6
  "bin": {
7
- "unloved": "./dist/index.js"
7
+ "unloved": "dist/index.js"
8
8
  },
9
9
  "files": [
10
10
  "dist",