Ballerina 模块元数据文档?
Ballerina module metadata documentation?
在 Ballerina Central 中,我看到带有关键字、版本兼容性、作者等的模块。除了在 Ballerina.toml
中的 org 和版本之外,我找不到任何关于如何设置任何内容的文档。是否有关于如何设置隐藏在某处的所有模块信息的完整指南?我真的很想警告人们,我要推送的模块仅与 Swan Lake 预览版兼容。
在Ballerina.toml中您可以指定如下模块信息。
orgName= "hevayo"
Version= "1.2.3"
license= "Apache-2.0"
authors= ["hevayo"]
keywords= ["ballerina", "Twitter", "endpoint", "connector"]
repository= "https://github.com/hevayo/module-twitter"
可以在 Ballerina spec repo 找到更详细的解释。
为了警告人们兼容性,您可以在 Module.md 文件中提及它,该文件将用于在 ballerina central 中生成模块页面。
在 Ballerina Central 中,我看到带有关键字、版本兼容性、作者等的模块。除了在 Ballerina.toml
中的 org 和版本之外,我找不到任何关于如何设置任何内容的文档。是否有关于如何设置隐藏在某处的所有模块信息的完整指南?我真的很想警告人们,我要推送的模块仅与 Swan Lake 预览版兼容。
在Ballerina.toml中您可以指定如下模块信息。
orgName= "hevayo"
Version= "1.2.3"
license= "Apache-2.0"
authors= ["hevayo"]
keywords= ["ballerina", "Twitter", "endpoint", "connector"]
repository= "https://github.com/hevayo/module-twitter"
可以在 Ballerina spec repo 找到更详细的解释。
为了警告人们兼容性,您可以在 Module.md 文件中提及它,该文件将用于在 ballerina central 中生成模块页面。