1.1.0
What's new
Added --context
or -c
flag for lumen draft
to communicate intent of the change for commit generation.
This effectively allows for more accurate commits at the cost of some (but still) minimal effort.
# Without context:
lumen draft
# Output: "feat(button.tsx): Change button color to blue"
# With context - just add a simple why:
lumen draft --context "match brand guidelines"
# Output: "style(button.tsx): Update button color to align with brand identity"