2025-02-14 14:53:08 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
tasks:
|
|
|
|
fmt:
|
|
|
|
cmds:
|
|
|
|
- npx prettier -w package.json src
|
|
|
|
|
|
|
|
build:
|
|
|
|
cmds:
|
2025-02-17 01:50:50 +00:00
|
|
|
- cd ../types && task build
|
2025-02-14 14:53:08 +00:00
|
|
|
- npm install typescript
|
|
|
|
- npx tsc
|
2025-02-16 19:10:28 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
cmds:
|
2025-02-16 20:54:34 +00:00
|
|
|
- npx jest
|