- Changed build command in build.sh from npm to pnpm. - Updated dependency installation in publish_setup.sh to use pnpm. - Modified check.sh to replace npx commands with pnpm for running Svelte sync and checks.
7 lines
142 B
Bash
7 lines
142 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "Building app..."
|
|
VITE_APP_VERSION=$(node -p "require('./package.json').version") pnpm run build
|
|
|