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 +1 -1
- package/install.sh +1 -1
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -1
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
|
|
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
|
|
72
|
+
npm install --omit=dev 2>/dev/null
|
|
73
73
|
ok "Dependencies installed"
|
|
74
74
|
|
|
75
75
|
# ── Create symlink ──
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED