20 lines
205 B
Bash
Executable File
20 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
(
|
|
cd messages || exit
|
|
yarn run precommit
|
|
)
|
|
(
|
|
cd front || exit
|
|
yarn run precommit
|
|
)
|
|
(
|
|
cd pusher || exit
|
|
yarn run precommit
|
|
)
|
|
(
|
|
cd back || exit
|
|
yarn run precommit
|
|
)
|