updux/Taskfile.yml

23 lines
389 B
YAML
Raw Normal View History

2021-10-12 17:11:32 +00:00
# https://taskfile.dev
version: '3'
vars:
2021-10-18 14:15:06 +00:00
GREETING: Hello, World!
2021-10-12 17:11:32 +00:00
tasks:
2021-10-18 12:46:00 +00:00
tsc: tsc
test: jest
2021-10-18 14:15:06 +00:00
'check:prettier': prettier --check .
'check:prettier:fix': prettier --write .
2021-10-18 12:46:00 +00:00
2021-10-18 14:15:06 +00:00
check:
deps: [tsc, test, 'check:prettier']
2021-10-18 12:46:00 +00:00
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