feat(justfile): add group attrs (DEV-331) #27
Loading…
Reference in a new issue
No description provided.
Delete branch "feat/justfile-groups-DEV-331"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
[group: '<name>']attributes (build, check, clean, dev, info, setup) sojust --listgroups recipes by intent.Why
DEV-331 standardizes the justfile shape across every project under
~/projects/a8n-run/. The grouping piece is purely cosmetic, no behavior change.The standard
create-releaserecipe from DEV-331 is deliberately not added in this PR: this repo's existing release workflow uses a different tag pattern, so dropping in arelease/v*recipe would create a parallel release path that doesn't actually publish anything. Harmonizing the release shape is left as a follow-up.Test plan
just --listshows the recipes grouped by[build, check, clean, dev, info, setup].#DEV-331