10 lines
183 B
Bash
10 lines
183 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "Running Svelte sync..."
|
|
npx svelte-kit sync
|
|
|
|
echo "Running svelte-check (fail on errors)..."
|
|
npx svelte-check --tsconfig ./tsconfig.json
|
|
|