# https://taskfile.dev version: '3' env: GO: go GOTELEMETRY: off vars: IMPORT: code.laidback.moe/yuki VERSION: 2026.01.21 tasks: default: cmds: - task: build build: desc: Build the interface cmds: - $GO build -v -ldflags='-w -X {{.IMPORT}}.Version={{.VERSION}}' -buildvcs=false -o yuki clean: desc: Remove generated files cmds: - rm -f yuki tidy: desc: Update go.mod cmds: - $GO mod tidy