Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add new category to categorylist.js #2197

Merged
merged 9 commits into from
Oct 7, 2023
7 changes: 6 additions & 1 deletion config/tools-manual.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
}
]
},
"AsyncAPI Generator Templates": {
"description": "The following is a list of templates compatible with AsyncAPI Generator. You can use them to generate apps, clients or documentation from your AsyncAPI documents.",
"toolsList": []
},
"Code-first tools": {
"description": "The following is a list of tools that generate AsyncAPI documents from your code.",
"toolsList": [
Expand Down Expand Up @@ -264,7 +268,8 @@
"react"
],
"categories": [
"documentation-generator"
"documentation-generator",
"generator-template"
],
"hasCommercial": false
}
Expand Down
5 changes: 5 additions & 0 deletions scripts/tools/categorylist.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ const categoryList = [
tag: "ide-extension",
description: "The following is a list of extensions for different IDEs like VSCode, IntelliJ IDEA and others"
},
{
name: "AsyncAPI Generator Templates",
tag: "generator-template",
description: "The following is a list of templates compatible with AsyncAPI Generator. You can use them to generate apps, clients or documentation from your AsyncAPI documents."
},
{
name: "Others",
tag: "other",
Expand Down
Loading