Dependencies
A task can require dependant tasks that will get executed first (if not cached).
tasks:
install:
cmds:
- npm install
build:
deps: [install]
cmds:
- tsc -b
publish:
deps: [build]
cmds:
- npm publishLast updated