@atercates/claude-deck 0.2.12 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atercates/claude-deck",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "Self-hosted web UI for managing Claude Code sessions",
5
5
  "bin": {
6
6
  "claude-deck": "./scripts/claude-deck"
@@ -128,7 +128,7 @@ if [[ "$FLAG_UPDATE" == true ]]; then
128
128
  fi
129
129
 
130
130
  log_info "Installing dependencies..."
131
- pnpm install > /dev/null 2>&1
131
+ pnpm install
132
132
 
133
133
  log_info "Building..."
134
134
  rm -f .next/build.lock
@@ -202,10 +202,7 @@ else
202
202
  cd "$INSTALL_DIR"
203
203
  fi
204
204
 
205
- # Dependencies
206
- log_info "Installing dependencies..."
207
- pnpm install > /dev/null 2>&1
208
-
205
+ # Approve native builds before first install
209
206
  if ! grep -q "onlyBuiltDependencies" package.json 2>/dev/null; then
210
207
  node -e "
211
208
  const pkg = require('./package.json');
@@ -213,9 +210,12 @@ if ! grep -q "onlyBuiltDependencies" package.json 2>/dev/null; then
213
210
  pkg.pnpm.onlyBuiltDependencies = ['better-sqlite3', 'esbuild', 'node-pty', 'sharp'];
214
211
  require('fs').writeFileSync('package.json', JSON.stringify(pkg, null, 2) + '\n');
215
212
  "
216
- pnpm install > /dev/null 2>&1
217
213
  fi
218
214
 
215
+ # Dependencies
216
+ log_info "Installing dependencies..."
217
+ pnpm install
218
+
219
219
  # .env (preserve existing)
220
220
  if [[ ! -f "$INSTALL_DIR/.env" ]]; then
221
221
  log_info "Writing .env..."