firefly_cli 0.1.1

CLI tool for working with Firefly Zero
1
2
3
4
5
6
7
8
9
10
11
# https://taskfile.dev
version: '3'

tasks:
  build:
    desc: build an app
    cmds:
      - test {{.CLI_ARGS}}
      - cargo run -- build {{.CLI_ARGS}}
  default:
    - task: build