Conversation
Simplify file naming and improve organization of the bind-hub folder: - Rename user-editable files (remove mb_ prefix): - mb_config.mk → config.mk - mb_project.mk → project.mk - mb_config.local.mk → config.local.mk - mb_project.local.mk → project.local.mk - Move auto-generated modules file to internal/ subfolder: - mb_modules.mk → internal/modules.mk - Add deprecation detection that fails with migration instructions for projects using the old structure - Update internal variable names for consistency: - mb_project_bindhub_modules_file → mb_project_bindhub_internal_modules_file Files: - core/deprecation.mk: New file with deprecation checks - templates/README.bind-hub.md: New README template for bind-hub folders - templates/config.tpl.mk, project.tpl.mk: Renamed from mb_* versions - mb_config.mk: Updated variable definitions - main.mk: Added deprecation check, updated variable refs - core/init_project.mk: Creates internal/ folder, copies README - core/modules_manager.mk: Updated to use new variable names - core/targets.mk: Fixed malformed variable reference - CHANGELOG.md, CLAUDE.md, README.md: Updated documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
mb_prefix from user-editable files (config.mk,project.mk)modules.mktointernal/subfolderNew bind-hub structure
Migration for existing projects
Projects using the old structure will see an error with these instructions:
mv bind-hub/mb_config.mk bind-hub/config.mkmv bind-hub/mb_project.mk bind-hub/project.mkmkdir -p bind-hub/internal && mv bind-hub/mb_modules.mk bind-hub/internal/modules.mkTest plan