-
Notifications
You must be signed in to change notification settings - Fork 38
feat(registry): add hex registry support for elixir, phoenix, and phoenix_live_view #95
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| name: elixir | ||
| description: "A dynamic, functional language for building scalable and maintainable applications" | ||
| repository: https://github.com/elixir-lang/elixir | ||
|
|
||
| source: | ||
| type: git | ||
| url: https://github.com/elixir-lang/elixir | ||
| docs_path: lib/elixir/pages |
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These two entries are identical apart from the range. I checked Can we collapse it to one? versions:
- min_version: "1.5.0"
source:
type: git
url: https://github.com/phoenixframework/phoenix
docs_path: guides
tag_pattern: "v{version}"Generated by Claude Code |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| name: phoenix | ||
| description: "A productive web framework for building modern web applications in Elixir" | ||
| repository: https://github.com/phoenixframework/phoenix | ||
|
|
||
| versions: | ||
| - min_version: "1.5.0" | ||
| source: | ||
| type: git | ||
| url: https://github.com/phoenixframework/phoenix | ||
| docs_path: guides | ||
| tag_pattern: "v{version}" |
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same thing here. versions:
- min_version: "0.17.0"
source:
type: git
url: https://github.com/phoenixframework/phoenix_live_view
docs_path: guides
tag_pattern: "v{version}"Generated by Claude Code |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| name: phoenix_live_view | ||
| description: "Rich, real-time user experiences with server-rendered HTML in Elixir" | ||
| repository: https://github.com/phoenixframework/phoenix_live_view | ||
|
|
||
| versions: | ||
| - min_version: "0.17.0" | ||
| source: | ||
| type: git | ||
| url: https://github.com/phoenixframework/phoenix_live_view | ||
| docs_path: guides | ||
| tag_pattern: "v{version}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lib/is mostly Elixir source, not docs. The build filters to.md/.mdx/etc, so this'll scrape stray markdown rather than the real guides, which live inlib/elixir/pages/. Can you double-check what ends up in the built package?docs_path: lib/elixir/pagesis probably what you want.Generated by Claude Code