22 lines
638 B
Bash
22 lines
638 B
Bash
#!/bin/bash
|
|
set -Eeuo pipefail
|
|
|
|
COZE_WORKSPACE_PATH="${COZE_WORKSPACE_PATH:-$(pwd)}"
|
|
|
|
cd "${COZE_WORKSPACE_PATH}"
|
|
|
|
if [ "${INSTALL_DEPS:-0}" = "1" ] || [ ! -d node_modules ]; then
|
|
echo "Installing dependencies..."
|
|
pnpm install --prefer-frozen-lockfile --prefer-offline --loglevel debug --reporter=append-only
|
|
else
|
|
echo "Skipping dependency install. Set INSTALL_DEPS=1 to force it."
|
|
fi
|
|
|
|
echo "Building the Next.js project..."
|
|
pnpm next build
|
|
|
|
echo "Bundling server with tsup..."
|
|
pnpm tsup src/server.ts --format cjs --platform node --target node20 --outDir dist --no-splitting --no-minify
|
|
|
|
echo "Build completed successfully!"
|