20 lines
282 B
YAML
20 lines
282 B
YAML
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
vars:
|
|
GREETING: Hello, World!
|
|
|
|
tasks:
|
|
tsc: tsc
|
|
test: jest
|
|
|
|
check:
|
|
deps: [tsc, test]
|
|
|
|
|
|
'test:types': tsd
|
|
docs:
|
|
cmds:
|
|
- jsdoc -c jsdoc.json -t ./node_modules/better-docs src/index.js src/Updux.js
|