mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
18 lines
416 B
YAML
18 lines
416 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
install:
|
|
desc: Installs docsify to work the on the documentation site
|
|
cmds:
|
|
- npm install docsify-cli -g
|
|
|
|
serve:
|
|
desc: Serves the documentation site locally
|
|
cmds:
|
|
- docsify serve .
|
|
|
|
ico:
|
|
desc: Generate favicon.ico from Logo.png
|
|
cmds:
|
|
- convert -background transparent "Logo.png" -define icon:auto-resize=16,24,32,48,64,72,96,128,256 "favicon.ico"
|