@rubytech/create-maxy-lite 0.1.6 → 0.1.7

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/lib/paths.mjs +6 -1
  2. package/package.json +1 -1
package/lib/paths.mjs CHANGED
@@ -66,7 +66,12 @@ export function ptyDirectLoadCommand({ ptyNode = PTY_NODE } = {}) {
66
66
  * was the divergence from Q2. The toolchain step guarantees python3/make/g++.
67
67
  */
68
68
  export function webchatInstallCommand({ webchatDir = WEBCHAT_DIR } = {}) {
69
- return `cd ${webchatDir} && npm_config_ignore_scripts=false npm install --omit=dev`
69
+ // Reproduce the spike's exact working command (`npm install node-pty` in the
70
+ // Ubuntu layer, scripts on) verbatim — that built a loadable pty.node. `npm
71
+ // install node-pty` also resolves the rest of package.json (ws), so it covers
72
+ // the webchat's deps too. The env prefix forces scripts on to match the spike's
73
+ // environment regardless of any ambient ignore-scripts in the Ubuntu image.
74
+ return `cd ${webchatDir} && npm_config_ignore_scripts=false npm install node-pty`
70
75
  }
71
76
 
72
77
  // The shipped skills, as bundled into the app dir, and the path the on-device
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-maxy-lite",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Install maxy-lite on an Android phone: orchestrates proot-distro Ubuntu, glibc Node, claude, the web-chat relay, the vault and its bind-mount — run via npx in bare Termux.",
5
5
  "type": "module",
6
6
  "engines": {