5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 06:01:52 +08:00
wails/docs/Taskfile.yml
2024-12-13 22:00:25 +11:00

31 lines
533 B
YAML

# https://taskfile.dev
version: '3'
tasks:
setup:
summary: Setup the project
preconditions:
- sh: npm --version
msg: "Looks like npm isn't installed."
cmds:
- npm install
dev:
summary: Run the dev server
preconditions:
- sh: npm --version
msg: "Looks like npm isn't installed."
cmds:
- npm run dev
build:
summary: Build the docs
preconditions:
- sh: npm --version
msg: "Looks like npm isn't installed."
cmds:
- npm run build