github.com/secoba/wails/v2@v2.6.4/Taskfile.yaml (about)

     1  # https://taskfile.dev
     2  
     3  version: "3"
     4  
     5  tasks:
     6    download:
     7      summary: Run go mod tidy
     8      cmds:
     9        - go mod tidy
    10  
    11    lint:
    12      summary: Run golangci-lint
    13      cmds:
    14        - golangci-lint run ./... --timeout=3m -v
    15  
    16    release:
    17      summary: Release a new version of Task. Call with `task v2:release -- <version>`
    18      dir: tools/release
    19      cmds:
    20        - go run release.go {{.CLI_ARGS}}
    21  
    22    format:md:
    23      cmds:
    24        - npx prettier --write "**/*.md"
    25  
    26    format:
    27      cmds:
    28        - task: format:md