- 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.
10 lines
185 B
Bash
10 lines
185 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "Running Svelte sync..."
|
|
pnpm svelte-kit sync
|
|
|
|
echo "Running svelte-check (fail on errors)..."
|
|
pnpm svelte-check --tsconfig ./tsconfig.json
|
|
|