updux/Taskfile.yml

27 lines
458 B
YAML

# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
tsc:
cmds:
- tsc
- echo 🙌 typescript compilation successful
test: jest
'prettier': prettier --check .
'prettier:fix': prettier --write .
check:
deps: [tsc, test, 'prettier']
'test:types': tsd
docs:
cmds:
- jsdoc -c jsdoc.json -t ./node_modules/better-docs src/index.js src/Updux.js