feat: add --types-dir flag for custom types output directory#418
Open
feat: add --types-dir flag for custom types output directory#418
Conversation
- Add TypesDir field to GenConfig - Add --types-dir flag to gen command (default: internal) - Update types.go to use configured TypesDir instead of hardcoded internal/types - Update import paths in generated handler and logic files Closes #406
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.
🎯 功能概述
添加
--types-dirflag 允许用户自定义 types 文件的输出目录,解决了 Issue #406📝 变更内容
1. 配置增强
GenConfig中添加了TypesDir字段internal,保持向后兼容2. 命令行参数
--types-dirflag 到jzero gen命令jzero gen --types-dir=types--types-dir=internal(保持原有行为)3. 代码生成逻辑
types.go中硬编码的internal/types路径TypesDir动态生成路径🎯 使用场景
✅ 测试建议
--types-dir=types- 应该输出到项目根目录的 types--types-dir=pkg/types- 应该输出到 pkg/types🔧 向后兼容
默认值为
internal,不影响现有项目的使用。Closes #406