Updates channel prefixes, log messages, comments, and configuration values across daemon, mcp-server, and related packages to complete the rebrand from gsd to sf-run naming. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
83 lines
2.3 KiB
Bash
Executable file
83 lines
2.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# validate-pack.sh — Verify the npm tarball is installable before publishing.
|
|
#
|
|
# Usage: npm run validate-pack (or bash scripts/validate-pack.sh)
|
|
# Exit 0 = safe to publish, Exit 1 = broken package.
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
# --- Guard: workspace packages must not have @sf/* cross-deps ---
|
|
echo "==> Checking workspace packages for @sf/* cross-deps..."
|
|
CROSS_FAILED=0
|
|
for ws_pkg in native pi-agent-core pi-ai pi-coding-agent pi-tui; do
|
|
RESULT=$(node -e "
|
|
const pkg = require('./packages/${ws_pkg}/package.json');
|
|
const deps = Object.keys(pkg.dependencies || {}).filter(d => d.startsWith('@sf/'));
|
|
if (deps.length) { console.log(deps.join(', ')); process.exit(1); }
|
|
" 2>&1) || {
|
|
echo " LEAKED in ${ws_pkg}: $RESULT"
|
|
CROSS_FAILED=1
|
|
true
|
|
}
|
|
done
|
|
if [ "$CROSS_FAILED" = "1" ]; then
|
|
echo "ERROR: Workspace packages have @sf/* cross-dependencies."
|
|
echo " These cause 404s when npm resolves them from the registry."
|
|
exit 1
|
|
fi
|
|
echo " No @sf/* cross-dependencies."
|
|
|
|
# --- Pack tarball ---
|
|
echo "==> Packing tarball..."
|
|
TARBALL_NAME=$(npm pack --ignore-scripts 2>/dev/null | tail -1)
|
|
TARBALL="$ROOT/$TARBALL_NAME"
|
|
|
|
if [ ! -f "$TARBALL" ]; then
|
|
echo "ERROR: npm pack produced no tarball"
|
|
exit 1
|
|
fi
|
|
|
|
INSTALL_DIR=$(mktemp -d)
|
|
trap 'rm -rf "$INSTALL_DIR" "$TARBALL"' EXIT
|
|
|
|
echo "==> Tarball: $TARBALL_NAME ($(du -h "$TARBALL" | cut -f1) compressed)"
|
|
|
|
# --- Check critical files using tar listing dumped to a file ---
|
|
# (avoids SIGPIPE issues with tar | grep on Linux)
|
|
TAR_LIST=$(mktemp)
|
|
tar tzf "$TARBALL" > "$TAR_LIST" 2>/dev/null
|
|
|
|
MISSING=0
|
|
for required in dist/loader.js packages/pi-coding-agent/dist/index.js scripts/link-workspace-packages.cjs; do
|
|
if ! grep -q "package/${required}" "$TAR_LIST"; then
|
|
echo " MISSING: $required"
|
|
MISSING=1
|
|
fi
|
|
done
|
|
rm -f "$TAR_LIST"
|
|
|
|
if [ "$MISSING" = "1" ]; then
|
|
echo "ERROR: Critical files missing from tarball."
|
|
exit 1
|
|
fi
|
|
echo " Critical files present."
|
|
|
|
# --- Install test ---
|
|
echo "==> Testing install in isolated directory..."
|
|
cd "$INSTALL_DIR"
|
|
npm init -y > /dev/null 2>&1
|
|
|
|
if npm install "$TARBALL" 2>&1; then
|
|
echo "==> Install succeeded."
|
|
else
|
|
echo ""
|
|
echo "ERROR: npm install of tarball failed."
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "Package is installable. Safe to publish."
|