github.com/rribou/wails/v2@v2.6.3/Taskfile.yaml (about)

     1  # https://taskfile.dev
     2  
     3  version: "3"
     4  
     5  tasks:
     6    release:
     7      summary: Release a new version of Task. Call with `task v2:release -- <version>`
     8      dir: tools/release
     9      cmds:
    10        - go run release.go {{.CLI_ARGS}}
    11  
    12    format:md:
    13      cmds:
    14        - npx prettier --write "**/*.md"
    15  
    16    format:
    17      cmds:
    18        - task: format:md