claude-code-termux 1.0.13 → 1.0.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-termux",
3
- "version": "1.0.13",
3
+ "version": "1.0.16",
4
4
  "description": "Claude Code CLI with Termux/Android compatibility fixes - a wrapper that patches issues with Sharp, ripgrep, and path resolution on ARM64 Android",
5
5
  "author": "Jimoh Ovbiagele <findingjimoh@gmail.com>",
6
6
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  "test": "node scripts/verify-install.js"
29
29
  },
30
30
  "dependencies": {
31
- "@anthropic-ai/claude-code": "^2.1.27"
31
+ "@anthropic-ai/claude-code": "^2.1.29"
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=18.0.0 <25.0.0"
@@ -8,9 +8,12 @@
8
8
  * variables that Claude Code checks to skip migration-related UI.
9
9
  */
10
10
  function apply() {
11
- // Set environment variable that Claude Code checks in jf6() function
12
- // to skip the auto-migration to native installer UI
13
- // Found in CLI v2.1.27: "X6(process.env.DISABLE_AUTO_MIGRATE_TO_NATIVE)"
11
+ // Set environment variable that suppresses the npm deprecation warning banner
12
+ // Found in CLI v2.1.27: "X6(process.env.DISABLE_INSTALLATION_CHECKS)"
13
+ // This controls the warning: "Claude Code has switched from npm to native installer..."
14
+ process.env.DISABLE_INSTALLATION_CHECKS = '1';
15
+
16
+ // Also disable auto-migration behavior (separate from the warning)
14
17
  process.env.DISABLE_AUTO_MIGRATE_TO_NATIVE = '1';
15
18
  }
16
19