mirror of
https://github.com/run-llama/llama-cloud-ts.git
synced 2026-08-24 10:23:00 -04:00
12 lines
231 B
Bash
Executable File
12 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "==> Running eslint --fix"
|
|
./node_modules/.bin/eslint --fix .
|
|
|
|
echo "==> Running prettier --write"
|
|
./node_modules/.bin/prettier --write --cache --cache-strategy metadata .
|