Skip to content

Commit

Permalink
chore: add jasyncapicmp to the file tools-manual.json (#1964)
Browse files Browse the repository at this point in the history
  • Loading branch information
siom79 authored Jul 18, 2023
1 parent ab12e85 commit 66297e4
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 8 deletions.
12 changes: 7 additions & 5 deletions components/tools/ToolsCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,13 @@ export default function ToolsCard({ toolData }) {
{toolData.filters.language && <div className="flex flex-col gap-2 mx-6">
<Carddata classes= 'text-sm text-gray-700' heading="LANGUAGE" data = {Data.properties.filters.properties.language.description} type="lang" visible = {visible} setVisible = {setVisible} read={readMore} setRead ={setReadMore} />
<div className="flex gap-2">
<Tag
name={toolData.filters.language.name}
bgColor={toolData.filters.language.color}
borderColor={toolData.filters.language.borderColor}
/>
{toolData.filters.language.map((item, index) => (
<Tag key={index}
name={item.name}
bgColor={item.color}
borderColor={item.borderColor}
/>
))}
</div>
</div>}
{toolData.filters.technology.length > 0 && <div className="flex flex-col gap-2 my-4 mx-6">
Expand Down
22 changes: 20 additions & 2 deletions config/tools-manual.json
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@
"description": "React component to view the difference between two Json based API documents. Supported specifications: JsonSchema, OpenAPI 3.x, AsyncAPI 2.x.",
"links": {
"repoUrl": "https://github.com/udamir/api-diff-viewer",
"websiteUrl": "https://api-diff-viewer.vercel.app/",
"websiteUrl": "https://api-diff-viewer.vercel.app/"
},
"filters": {
"language": "TypeScript",
Expand Down Expand Up @@ -588,7 +588,25 @@
"language": "TypeScript",
"categories": ["compare-tool"]
}
}
},
{
"title": "jasyncapicmp",
"description": "Tool/library/maven-plugin for comparing two AsyncAPI versions and evaluating compatibility.",
"links": {
"websiteUrl": "https://siom79.github.io/jasyncapicmp/",
"repoUrl": "https://github.com/siom79/jasyncapicmp"
},
"filters": {
"language": "Java",
"technology": [
"Maven"
],
"categories": [
"compare-tool"
],
"hasCommercial": false
}
}
]
},
"Others": {
Expand Down
Loading

0 comments on commit 66297e4

Please sign in to comment.