mirror of
https://github.com/OpenListTeam/OpenList-Frontend.git
synced 2026-03-13 11:20:24 +00:00
* chore(deps): update dependency husky to v9 * chore(husky): migrate usage from v8 to v9 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: MadDogOwner <xiaoran@xrgzs.top>
7 lines
99 B
Bash
Executable File
7 lines
99 B
Bash
Executable File
#!/usr/bin/env sh
|
|
if type pnpm > /dev/null 2>&1; then
|
|
pnpm lint-staged
|
|
else
|
|
npx lint-staged
|
|
fi
|