-
-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Purpose: Grouping related components for better organization.
Proposed:
defp determine_group(component) do
case component.package_url.type do
"otp" when is_erlang_stdlib(component.name) -> "erlang.otp"
"github" when is_elixir_stdlib(component.name) -> "elixir.stdlib"
_ -> nil
end
endOutput:
{
"name": "stdlib",
"group": "erlang.otp",
"type": "library"
},
{
"name": "logger",
"group": "elixir.stdlib",
"type": "library"
}Important
Question: ❓ Group naming convention:
- Should Hex organizations map to groups?
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed