mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
0cf93e50b8
* Add executable permission to scripts/*.sh * Set -eu to the shebang in /scripts/*.sh * Fix client/python/scripts/*.sh
12 lines
201 B
Bash
Executable File
12 lines
201 B
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
cd "$(dirname ${0})/.."
|
|
source scripts/helpers.sh
|
|
|
|
pnpm_required
|
|
|
|
echo "Formatting the frontend... Also we'll do type checking with TypeScript."
|
|
pnpm i
|
|
pnpm format:write
|
|
pnpm ts:check
|