mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
30 lines
533 B
YAML
30 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
|
|
|