2025-02-14 14:53:08 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
fmt:
|
|
|
|
cmds:
|
|
|
|
- npx prettier -w package.json src
|
|
|
|
|
|
|
|
build:
|
|
|
|
cmds:
|
|
|
|
- npm install typescript
|
|
|
|
- typeshare --lang typescript --output-file gen/types.ts ../server/src
|
|
|
|
- npx tsc
|
2025-02-16 19:10:28 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
cmds:
|
|
|
|
- npx jest src/
|