yapout 0.5.1 → 0.5.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 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -195,7 +195,7 @@ function getYapoutBinPath() {
195
195
  }
196
196
  } catch {
197
197
  throw new Error(
198
- "Could not find `yapout` on PATH. Make sure @yapout/cli is installed globally."
198
+ "Could not find `yapout` on PATH. Make sure yapout is installed globally (npm install -g yapout)."
199
199
  );
200
200
  }
201
201
  }
@@ -426,7 +426,7 @@ function registerProtocolHandler() {
426
426
  }
427
427
 
428
428
  // src/commands/login.ts
429
- var CLI_VERSION = "0.5.1";
429
+ var CLI_VERSION = "0.5.2";
430
430
  function safeReturnTo(raw) {
431
431
  if (!raw) return null;
432
432
  try {
@@ -3573,7 +3573,7 @@ async function startMcpServer() {
3573
3573
  };
3574
3574
  const server = new McpServer({
3575
3575
  name: "yapout",
3576
- version: "0.5.1"
3576
+ version: "0.5.2"
3577
3577
  });
3578
3578
  registerInitTool(server, ctx);
3579
3579
  registerCompactTool(server, ctx);
@@ -4339,7 +4339,7 @@ var watchCommand = new Command10("watch").description("Watch for work and spawn
4339
4339
  chalk11.green("Watcher started in background") + chalk11.dim(` (PID ${process.pid}, log: ${LOG_FILE})`)
4340
4340
  );
4341
4341
  }
4342
- console.log(chalk11.bold(`yapout watch v${"0.5.1"}`));
4342
+ console.log(chalk11.bold(`yapout watch v${"0.5.2"}`));
4343
4343
  console.log(
4344
4344
  `Project: ${chalk11.green(mapping.projectName)} (${mapping.projectId})`
4345
4345
  );
@@ -4892,7 +4892,7 @@ var handleUriCommand = new Command15("handle-uri").description("Handle a yapout:
4892
4892
 
4893
4893
  // src/index.ts
4894
4894
  var program = new Command16();
4895
- program.name("yapout").description("yapout \u2014 from meeting transcript to merged PR").version("0.5.1");
4895
+ program.name("yapout").description("yapout \u2014 from meeting transcript to merged PR").version("0.5.2");
4896
4896
  program.addCommand(loginCommand);
4897
4897
  program.addCommand(logoutCommand);
4898
4898
  program.addCommand(initCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yapout",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "yapout CLI — link local repos, authenticate, and manage projects",
5
5
  "type": "module",
6
6
  "bin": {