mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
10 lines
271 B
Plaintext
10 lines
271 B
Plaintext
if [[ "$OS" == "Windows_NT" ]]; then
|
|
npx.cmd lint-staged
|
|
# Check for unused i18n keys in staged files
|
|
npx.cmd tsx scripts/check-unused-i18n-keys.ts
|
|
else
|
|
npx lint-staged
|
|
# Check for unused i18n keys in staged files
|
|
npx tsx scripts/check-unused-i18n-keys.ts
|
|
fi
|