6 lines
189 B
Text
6 lines
189 B
Text
|
|
#!/usr/bin/env sh
|
||
|
|
|
||
|
|
# Generate TypeScript types from OpenAPI spec before commit
|
||
|
|
# This ensures types are always up-to-date with the backend API
|
||
|
|
cd apps/web && bash scripts/generate-types.sh
|