happy-coder 0.6.1 → 0.6.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.
package/dist/index.cjs CHANGED
@@ -2262,7 +2262,7 @@ async function loop(opts) {
2262
2262
  }
2263
2263
 
2264
2264
  var name = "happy-coder";
2265
- var version = "0.6.1";
2265
+ var version = "0.6.2";
2266
2266
  var description = "Claude Code session sharing CLI";
2267
2267
  var author = "Kirill Dubovitskiy";
2268
2268
  var license = "MIT";
package/dist/index.mjs CHANGED
@@ -2241,7 +2241,7 @@ async function loop(opts) {
2241
2241
  }
2242
2242
 
2243
2243
  var name = "happy-coder";
2244
- var version = "0.6.1";
2244
+ var version = "0.6.2";
2245
2245
  var description = "Claude Code session sharing CLI";
2246
2246
  var author = "Kirill Dubovitskiy";
2247
2247
  var license = "MIT";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happy-coder",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Claude Code session sharing CLI",
5
5
  "author": "Kirill Dubovitskiy",
6
6
  "license": "MIT",
@@ -1,6 +1,9 @@
1
1
  const crypto = require('crypto');
2
2
  const fs = require('fs');
3
3
 
4
+ // Disable autoupdater (never works really)
5
+ process.env.DISABLE_AUTOUPDATER = '1';
6
+
4
7
  // Helper to write JSON messages to fd 3
5
8
  function writeMessage(message) {
6
9
  try {