mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 22:22:34 +03:00
12 lines
200 B
Bash
Executable File
12 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
yarn lint-staged
|
|
|
|
# Remove empty directories
|
|
if command -v fd &> /dev/null
|
|
then
|
|
fd -H '^\.DS_Store$' -tf -X rm || true
|
|
fd -te -td -X rmdir || true
|
|
fi
|