7 lines
232 B
Bash
Executable File
7 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
cd frontend/packages/lib-shared && npm run type:check && npm run lint-staged
|
|
cd ../mobile && npm run type:check && npm run lint-staged
|
|
cd ../web && npm run type:check && npm run lint-staged
|