mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 04:47:03 +03:00
12 lines
180 B
Bash
Executable File
12 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
yarn lint-staged
|
|
|
|
|
|
if command -v find &> /dev/null
|
|
then
|
|
find . -name '.DS_Store' -type f -delete
|
|
find . -type d -empty -delete
|
|
fi
|