fluxy-bot 0.2.18 → 0.2.19

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/install.ps1 CHANGED
@@ -64,7 +64,7 @@ try {
64
64
  # ── Install dependencies ──
65
65
  Write-Info "Installing dependencies (this may take a moment)..."
66
66
  Push-Location $FLUXY_HOME
67
- npm install --omit=dev --ignore-scripts 2>$null
67
+ npm install --omit=dev 2>$null
68
68
  Pop-Location
69
69
  Write-Ok "Dependencies installed"
70
70
 
package/install.sh CHANGED
@@ -69,7 +69,7 @@ ok "Files copied"
69
69
  # ── Install dependencies ──
70
70
  info "Installing dependencies (this may take a moment)..."
71
71
  cd "$FLUXY_HOME"
72
- npm install --omit=dev --ignore-scripts 2>/dev/null
72
+ npm install --omit=dev 2>/dev/null
73
73
  ok "Dependencies installed"
74
74
 
75
75
  # ── Create symlink ──
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fluxy-bot",
3
- "version": "0.2.18",
3
+ "version": "0.2.19",
4
4
  "description": "Self-hosted AI bot — run your own AI assistant from anywhere",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -54,7 +54,7 @@ for (const file of FILES_TO_COPY) {
54
54
  // ── Install dependencies in ~/.fluxy/ ──
55
55
 
56
56
  try {
57
- execSync('npm install --omit=dev --ignore-scripts', {
57
+ execSync('npm install --omit=dev', {
58
58
  cwd: FLUXY_HOME,
59
59
  stdio: 'ignore',
60
60
  });