Skip to content

v0.2.2

Compare
Choose a tag to compare
@tcnksm tcnksm released this 30 Aug 16:30
· 95 commits to master since this release

New workflow

Add new workflow to generate CLI project. You can generate CLI project from design file (.toml).

Here is workflow.

First, generate template file. This generates todo-design.toml file with default variables.

$ gcli design todo

Then, edit it & design cli,

$ $EDITOR todo-design.toml

Then validate .toml has required fields,

$ gcli validate todo-design.toml

Finally, generate cli project,

$ gcli apply todo-design.toml

CHANGELOG

Added

  • design command to create design template file (.toml) (#25)
  • validate command to check design file has enough fields to generate CLI project (#25)
  • apply command to generate CLI project from design file (#25)

Deprecated

  • Nothing

Removed

  • Nothing

Fixed

  • Nothing