tanuki-telemetry 1.3.2 → 1.3.3

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 +9 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -46,7 +46,15 @@ async function update() {
46
46
  if (typeof installAllTemplateCommands === "function") {
47
47
  await installAllTemplateCommands();
48
48
  }
49
- // 2. Build MCP server + frontend from source
49
+ // 2. Sync MCP server version with CLI version
50
+ console.log(" Syncing server version...");
51
+ try {
52
+ execSync(`cd ~/.claude/mcp-servers/telemetry && npm version ${local} --no-git-tag-version --allow-same-version 2>&1`, { stdio: "pipe", timeout: 5000 });
53
+ }
54
+ catch {
55
+ // Non-critical
56
+ }
57
+ // 3. Build MCP server + frontend from source
50
58
  console.log(" Building MCP server...");
51
59
  try {
52
60
  execSync("cd ~/.claude/mcp-servers/telemetry && npm run build 2>&1", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tanuki-telemetry",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Local installer for Telemetry MCP server — setup, start, stop, and status for Claude Code autonomous workflows",
5
5
  "type": "module",
6
6
  "bin": {