updux/Taskfile.yml

20 lines
282 B
YAML
Raw Normal View History

2021-10-12 17:11:32 +00:00
# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
2021-10-18 12:46:00 +00:00
tsc: tsc
test: jest
check:
deps: [tsc, test]
2021-10-12 17:11:32 +00:00
'test:types': tsd
docs:
cmds:
- jsdoc -c jsdoc.json -t ./node_modules/better-docs src/index.js src/Updux.js