yapout 0.15.1 → 0.15.2

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 +5 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -246,7 +246,7 @@ function getConvexUrl() {
246
246
  );
247
247
  }
248
248
  function getAppUrl() {
249
- return process.env.YAPOUT_APP_URL || "https://yapout.vercel.app";
249
+ return process.env.YAPOUT_APP_URL || "https://yapout.com";
250
250
  }
251
251
 
252
252
  // src/lib/convex.ts
@@ -296,7 +296,7 @@ function requireAuth() {
296
296
  }
297
297
 
298
298
  // src/commands/serve.ts
299
- var CLI_VERSION = "0.15.1";
299
+ var CLI_VERSION = "0.15.2";
300
300
  var DEFAULT_PORT = 7777;
301
301
  var PORT_RANGE = 10;
302
302
  var HEARTBEAT_MS = 12e4;
@@ -306,7 +306,6 @@ var LOG_FILE = join2(getYapoutDir(), "serve.log");
306
306
  var ALLOWED_ORIGINS = [
307
307
  "https://yapout.com",
308
308
  "https://www.yapout.com",
309
- "https://yapout.vercel.app",
310
309
  // Local dev / sandbox ports — wide range so any worktree's auto-allocated
311
310
  // Next.js port works without configuration.
312
311
  ...Array.from({ length: 20 }, (_, i) => `http://localhost:${3e3 + i}`),
@@ -519,7 +518,7 @@ var serveCommand = new Command("serve").description(
519
518
  });
520
519
 
521
520
  // src/commands/login.ts
522
- var CLI_VERSION2 = "0.15.1";
521
+ var CLI_VERSION2 = "0.15.2";
523
522
  function safeReturnTo(raw) {
524
523
  if (!raw) return null;
525
524
  try {
@@ -5472,7 +5471,7 @@ async function startMcpServer() {
5472
5471
  };
5473
5472
  const server = new McpServer({
5474
5473
  name: "yapout",
5475
- version: "0.15.1"
5474
+ version: "0.15.2"
5476
5475
  });
5477
5476
  registerInitTool(server, ctx);
5478
5477
  registerCompactTool(server, ctx);
@@ -6194,7 +6193,7 @@ var pillarCommand = new Command15("pillar").description("Manage per-project pill
6194
6193
 
6195
6194
  // src/index.ts
6196
6195
  var program = new Command16();
6197
- program.name("yapout").description("yapout \u2014 the PM tool for agents").version("0.15.1");
6196
+ program.name("yapout").description("yapout \u2014 the PM tool for agents").version("0.15.2");
6198
6197
  program.addCommand(loginCommand);
6199
6198
  program.addCommand(logoutCommand);
6200
6199
  program.addCommand(initCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yapout",
3
- "version": "0.15.1",
3
+ "version": "0.15.2",
4
4
  "description": "yapout CLI — link local repos, authenticate, and manage projects",
5
5
  "type": "module",
6
6
  "bin": {