13 lines
223 B
YAML
13 lines
223 B
YAML
|
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
|