17 lines
216 B
YAML
17 lines
216 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
fmt:
|
|
cmds:
|
|
- npx prettier -w package.json src
|
|
|
|
build:
|
|
cmds:
|
|
- cd ../types && task build
|
|
- npm install typescript
|
|
- npx tsc
|
|
|
|
test:
|
|
cmds:
|
|
- npx jest
|