Move module to maragu.dev/gomponents namespace (#215) This is a breaking change to move gomponents to my own import namespace. I will obviously be careful with this, test it out in all kinds of scenarios, release betas, etc. But otherwise, because the `Node` interface is so simple and has basically never changed, I don't think this will break much. 🤞 Fixes #200
Markus Wüstenberg markus@maragu.dk
Thu, 03 Oct 2024 11:26:44 +0200
12 files changed, 30 insertions(+), 28 deletions(-)
M README.md → README.md
@@ -2,10 +2,10 @@ # Tired of complex template languages? <img src="logo.png" alt="Logo" width="300" align="right"/> -[](https://pkg.go.dev/github.com/maragudk/gomponents) +[](https://pkg.go.dev/maragu.dev/gomponents) [](https://github.com/maragudk/gomponents/actions/workflows/ci.yml) [](https://codecov.io/gh/maragudk/gomponents) -[](https://goreportcard.com/report/github.com/maragudk/gomponents) +[](https://goreportcard.com/report/maragu.dev/gomponents) Try HTML components in pure Go. @@ -13,7 +13,9 @@ _gomponents_ are HTML components written in pure Go. They render to HTML 5, and make it easy for you to build reusable components. So you can focus on building your app instead of learning yet another templating language. -The API may change until version 1 is reached. +```shell +go get maragu.dev/gomponents +``` Made with ✨sparkles✨ by [maragu](https://www.maragu.dev/). @@ -40,7 +42,7 @@ ## Usage ```shell -go get github.com/maragudk/gomponents +go get maragu.dev/gomponents ``` The preferred way to use gomponents is with so-called dot-imports (note the dot before the imports), @@ -50,9 +52,9 @@ ```go package main import ( - . "github.com/maragudk/gomponents" - . "github.com/maragudk/gomponents/components" - . "github.com/maragudk/gomponents/html" + . "maragu.dev/gomponents" + . "maragu.dev/gomponents/components" + . "maragu.dev/gomponents/html" ) func Navbar(authenticated bool, currentPath string) Node {
M components/components.go → components/components.go
@@ -6,8 +6,8 @@ "io" "sort" "strings" - g "github.com/maragudk/gomponents" - . "github.com/maragudk/gomponents/html" + g "maragu.dev/gomponents" + . "maragu.dev/gomponents/html" ) // HTML5Props for [HTML5].
M components/components_test.go → components/components_test.go
@@ -4,10 +4,10 @@ import ( "os" "testing" - g "github.com/maragudk/gomponents" - . "github.com/maragudk/gomponents/components" - . "github.com/maragudk/gomponents/html" - "github.com/maragudk/gomponents/internal/assert" + g "maragu.dev/gomponents" + . "maragu.dev/gomponents/components" + . "maragu.dev/gomponents/html" + "maragu.dev/gomponents/internal/assert" ) func TestHTML5(t *testing.T) {
M gomponents_test.go → gomponents_test.go
@@ -8,8 +8,8 @@ "os" "strings" "testing" - g "github.com/maragudk/gomponents" - "github.com/maragudk/gomponents/internal/assert" + g "maragu.dev/gomponents" + "maragu.dev/gomponents/internal/assert" ) func TestNodeFunc(t *testing.T) {
M html/attributes.go → html/attributes.go
@@ -1,7 +1,7 @@ package html import ( - g "github.com/maragudk/gomponents" + g "maragu.dev/gomponents" ) func Async() g.Node {
M html/attributes_test.go → html/attributes_test.go
@@ -4,9 +4,9 @@ import ( "fmt" "testing" - g "github.com/maragudk/gomponents" - . "github.com/maragudk/gomponents/html" - "github.com/maragudk/gomponents/internal/assert" + g "maragu.dev/gomponents" + . "maragu.dev/gomponents/html" + "maragu.dev/gomponents/internal/assert" ) func TestBooleanAttributes(t *testing.T) {
M html/elements.go → html/elements.go
@@ -8,7 +8,7 @@ import ( "io" - g "github.com/maragudk/gomponents" + g "maragu.dev/gomponents" ) // Doctype returns a special kind of [g.Node] that prefixes its sibling with the string "<!doctype html>".
M html/elements_test.go → html/elements_test.go
@@ -5,9 +5,9 @@ "errors" "fmt" "testing" - g "github.com/maragudk/gomponents" - . "github.com/maragudk/gomponents/html" - "github.com/maragudk/gomponents/internal/assert" + g "maragu.dev/gomponents" + . "maragu.dev/gomponents/html" + "maragu.dev/gomponents/internal/assert" ) type erroringWriter struct{}
M http/handler.go → http/handler.go
@@ -4,7 +4,7 @@ import ( "net/http" - g "github.com/maragudk/gomponents" + g "maragu.dev/gomponents" ) // Handler is like [http.Handler] but returns a [g.Node] and an error.
M http/handler_test.go → http/handler_test.go
@@ -7,8 +7,8 @@ "net/http" "net/http/httptest" "testing" - g "github.com/maragudk/gomponents" - ghttp "github.com/maragudk/gomponents/http" + g "maragu.dev/gomponents" + ghttp "maragu.dev/gomponents/http" ) func TestAdapt(t *testing.T) {
M internal/assert/assert.go → internal/assert/assert.go
@@ -5,7 +5,7 @@ import ( "strings" "testing" - g "github.com/maragudk/gomponents" + g "maragu.dev/gomponents" ) // Equal checks for equality between the given expected string and the rendered Node string.