happy-coder 0.1.12 → 0.1.13

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/bin/happy CHANGED
@@ -1,3 +1,2 @@
1
- #!/usr/bin/env node
2
- process.env.NODE_NO_WARNINGS = '1';
3
- import '../dist/index.mjs'
1
+ #!/usr/bin/env node --no-warnings --no-deprecation
2
+ import "../dist/index.mjs";
package/bin/happy.cmd CHANGED
@@ -1,3 +1,3 @@
1
1
  @echo off
2
2
  set NODE_NO_WARNINGS=1
3
- node "%~dp0\happy" %*
3
+ node --no-warnings --no-deprecation "%~dp0\happy" %*
package/dist/index.cjs CHANGED
@@ -1009,7 +1009,7 @@ class InterruptController {
1009
1009
  }
1010
1010
  }
1011
1011
 
1012
- var version = "0.1.12";
1012
+ var version = "0.1.13";
1013
1013
  var packageJson = {
1014
1014
  version: version};
1015
1015
 
package/dist/index.mjs CHANGED
@@ -988,7 +988,7 @@ class InterruptController {
988
988
  }
989
989
  }
990
990
 
991
- var version = "0.1.12";
991
+ var version = "0.1.13";
992
992
  var packageJson = {
993
993
  version: version};
994
994
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happy-coder",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Claude Code session sharing CLI",
5
5
  "author": "Kirill Dubovitskiy",
6
6
  "license": "MIT",