mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
009796b2df
- format frontend - add format_frontend.sh script
11 lines
251 B
Bash
11 lines
251 B
Bash
#!/bin/bash
|
|
if [ -z "$(ls | grep CONTRIBUTING.md)" ]; then
|
|
echo "Please run the script from repo directory"
|
|
exit -1
|
|
else
|
|
echo "Formatting frontend with prettier, also type checking with TypeScript"
|
|
cd ui
|
|
pnpm format:write
|
|
pnpm ts:check
|
|
fi
|