Skip to content

Commit 444c4bb

Browse files
include Language and Framework in components list tool
1 parent fc7b0eb commit 444c4bb

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
kind: Added
2+
body: Add Language & Framework to the components tool directly, so it is listed without
3+
additional calls to `resourceDetails`
4+
time: 2025-05-27T07:41:11.365169-07:00

src/cmd/root.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ type serializedComponent struct {
2727
Id string
2828
Name string
2929
Owner string
30+
Language string
31+
Framework string
3032
Url string
3133
}
3234

@@ -185,6 +187,8 @@ var rootCmd = &cobra.Command{
185187
Id: string(node.Id),
186188
Name: node.Name,
187189
Owner: node.Owner.Alias,
190+
Language: node.Language,
191+
Framework: node.Framework,
188192
Url: node.HtmlURL,
189193
})
190194
}

0 commit comments

Comments
 (0)