cli-jaw 2.17.49 → 2.17.50

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": "cli-jaw",
3
- "version": "2.17.49",
3
+ "version": "2.17.50",
4
4
  "description": "Personal AI assistant powered by Pi, Antigravity, Claude, Codex, Codex App, Cursor, Grok, Kiro, OpenCode, and Copilot — Web, Terminal, Slack, Telegram, and Discord interfaces with 33 skills active by default from a 230-skill reference library",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -169,7 +169,19 @@ echo "🖥️ Syncing Electron version to $VERSION..."
169
169
  node scripts/sync-electron-version.cjs
170
170
 
171
171
  echo "🔎 Type checking..."
172
- pnpm exec tsc --noEmit
172
+ # npm, not pnpm. Every other step in this script — build, build:frontend, the
173
+ # electron prefix commands, gate:all, pack — runs through npm, CI installs with
174
+ # `npm ci`, and promote-to-main.sh never touches pnpm. The lone `pnpm exec` was
175
+ # the outlier, and it does not just run a binary: pnpm reconciles the tree
176
+ # against pnpm-lock.yaml first, which on a host without node-gyp's toolchain
177
+ # fails building better-sqlite3 from source. That happened AFTER the version
178
+ # bump and BEFORE the gates, so the release aborted with the working tree
179
+ # already carrying a bump and a half-migrated node_modules.
180
+ #
181
+ # The check itself is not lost: gate:all below runs gate:typecheck, which is
182
+ # `tsc --noEmit` over both the server and the frontend project. This line stays
183
+ # only to fail fast before the two builds.
184
+ npm run typecheck
173
185
 
174
186
  echo "📦 Building backend..."
175
187
  npm run build