mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-07-30 15:28:30 -04:00
9 lines
126 B
Bash
Executable File
9 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
repo_root="$(git rev-parse --show-toplevel)"
|
|
cd "$repo_root/frontend"
|
|
|
|
pnpm run format --write
|
|
git add -u .
|