Core

/bin/format-client.sh (203 B)

 1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

## Formatting code from the TypeScript projects

set -euo pipefail
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$dir/.."
cd "client"

echo "=== formatting ==="
npm run format