mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
10 lines
133 B
Text
10 lines
133 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
source ./scripts/common
|
||
|
|
||
|
uglyFiles=$(ugly $(cachedJS))
|
||
|
|
||
|
if [ -n "$uglyFiles" ]; then
|
||
|
prettier --write "$uglyFiles"
|
||
|
fi
|