feat(taskfiles)!: Unflatten utils taskfile namespace; include any necessary taskfiles in each taskfile.#27
Conversation
WalkthroughThis pull request removes the old Changes
Possibly related PRs
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (5)
💤 Files with no reviewable changes (1)
✅ Files skipped from review due to trivial changes (1)
🔇 Additional comments (10)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
kirkrodrigues
left a comment
There was a problem hiding this comment.
For the PR title, how about:
feat(taskfiles)!: Unflatten utils taskfile namespace; include any necessary taskfiles in each taskfile.
Description
Previously, including
utils-*.yamltaskfiles that depended on otherutilstaskfiles would fail as there were no include statements. This relied on a project always using the flattened structure inutils.yamland all task names insideutils-*.yamlto be completely flat.This PR changes:
taskfiles/utils-cmake.yaml->taskfiles/utils/cmake.yamlutils.yamlto include each taskfile category under a namespacecmake: cmake.yamlcmake-build->cmake:buildThese changes make using the tasks less error prone to incorrect naming.
Checklist
breaking change.
Validation performed
Tested on modified local clp-ffi-go branch using new task names.
Summary by CodeRabbit
New Features
Refactor
Chores