mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 07:10:40 +08:00
31 lines
533 B
YAML
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
|
|
|