xyteeecode 1.0.21 → 1.0.23
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/xyteeecode +6 -0
- package/package.json +2 -7
package/bin/xyteeecode
CHANGED
|
@@ -30,6 +30,12 @@ function run(target, inheritedEnv, bypassLoader) {
|
|
|
30
30
|
: binDir
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
// Bun ≥1.4 on Termux/Android aarch64 segfaults in the HTTP event loop
|
|
34
|
+
// because epoll_pwait2() trips Android's seccomp policy (faults instead of
|
|
35
|
+
// returning errno). Disable the syscall there; Bun falls back to
|
|
36
|
+
// epoll_pwait. See oven-sh/bun#32489/#32632.
|
|
37
|
+
if (isTermux()) env.BUN_FEATURE_FLAG_DISABLE_EPOLL_PWAIT2 = "1"
|
|
38
|
+
|
|
33
39
|
// The bundled musl libc uses a stub resolver that reads /etc/resolv.conf
|
|
34
40
|
// and speaks raw UDP to its nameservers. Stock Termux/Android has no
|
|
35
41
|
// resolv.conf and no listener on 127.0.0.1:53, so getaddrinfo(3) times out
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xyteeecode",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"description": "xyteeecode - AI coding agent CLI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://xyteee.com",
|
|
@@ -24,11 +24,6 @@
|
|
|
24
24
|
"node": ">=18"
|
|
25
25
|
},
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"xyteeecode-linux-arm64": "1.0.
|
|
28
|
-
"xyteeecode-linux-x64": "1.0.21",
|
|
29
|
-
"xyteeecode-linux-x64-baseline": "1.0.21",
|
|
30
|
-
"xyteeecode-linux-arm64-musl": "1.0.21",
|
|
31
|
-
"xyteeecode-linux-x64-musl": "1.0.21",
|
|
32
|
-
"xyteeecode-linux-x64-baseline-musl": "1.0.21"
|
|
27
|
+
"xyteeecode-linux-arm64-musl": "1.0.23"
|
|
33
28
|
}
|
|
34
29
|
}
|