18 lines
226 B
YAML
18 lines
226 B
YAML
version: "3"
|
|
|
|
tasks:
|
|
fmt:
|
|
cmds:
|
|
- npm run fmt
|
|
|
|
build:
|
|
cmds:
|
|
- npm install
|
|
- npx tsc --watch
|
|
|
|
test:
|
|
cmds:
|
|
# - cd ../visions-types && task build
|
|
- npm install
|
|
- npm run test
|