diff --git a/README.md b/README.md index ff894ea..b315e65 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # xc - Simple, Convenient, Markdown defined task runner. -[![test](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml/badge.svg)](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml) -[![docs](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml/badge.svg)](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml) -[![Go Reference](https://pkg.go.dev/badge/github.com/joe-davidson1802/xc.svg)](https://pkg.go.dev/github.com/joe-davidson1802/xc) +[![test](https://github.com/joerdav/xc/actions/workflows/test.yaml/badge.svg)](https://github.com/joerdav/xc/actions/workflows/test.yaml) +[![docs](https://github.com/joerdav/xc/actions/workflows/docs.yml/badge.svg)](https://github.com/joerdav/xc/actions/workflows/docs.yml) +[![Go Reference](https://pkg.go.dev/badge/github.com/joerdav/xc.svg)](https://pkg.go.dev/github.com/joerdav/xc) ![xc](https://user-images.githubusercontent.com/19927761/156772881-10065864-ff4d-4225-ab2b-5adbbe628845.png) -[Docs](https://xcfile.dev/) | [Getting Started](https://xcfile.dev/getting-started/) | [Github](https://github.com/joe-davidson1802/xc) +[Docs](https://xcfile.dev/) | [Getting Started](https://xcfile.dev/getting-started/) | [Github](https://github.com/joerdav/xc) `xc` is a task runner designed to maximise convenience, and minimise complexity. @@ -23,7 +23,7 @@ Each `xc` task is defined in simple, human-readable Markdown. Meaning that for p # Example -Take the `tag` task in the [README.md](https://github.com/joe-davidson1802/xc#tag) of the `xc` repository: +Take the `tag` task in the [README.md](https://github.com/joerdav/xc#tag) of the `xc` repository: ```` ## tag @@ -45,17 +45,17 @@ The task could be run simply with `xc tag`, but a side-effect of it being an `xc ``` $ xc tag go test ./... -? github.com/joe-davidson1802/xc/cmd/xc [no test files] -? github.com/joe-davidson1802/xc/models [no test files] -ok github.com/joe-davidson1802/xc/parser (cached) -ok github.com/joe-davidson1802/xc/run (cached) +? github.com/joerdav/xc/cmd/xc [no test files] +? github.com/joerdav/xc/models [no test files] +ok github.com/joerdav/xc/parser (cached) +ok github.com/joerdav/xc/run (cached) export VERSION=78 echo Adding git tag with version v0.0.78 Adding git tag with version v0.0.78 git tag v0.0.78 git push origin v0.0.78 Total 0 (delta 0), reused 0 (delta 0), pack-reused 0 -To github.com:joe-davidson1802/xc +To github.com:joerdav/xc * [new tag] v0.0.78 -> v0.0.78 ``` diff --git a/cmd/xc/main.go b/cmd/xc/main.go index 0d359f5..1d8a5b9 100644 --- a/cmd/xc/main.go +++ b/cmd/xc/main.go @@ -9,9 +9,9 @@ import ( "runtime/debug" "strings" - "github.com/joe-davidson1802/xc/models" - "github.com/joe-davidson1802/xc/parser" - "github.com/joe-davidson1802/xc/run" + "github.com/joerdav/xc/models" + "github.com/joerdav/xc/parser" + "github.com/joerdav/xc/run" "github.com/posener/complete" ) diff --git a/doc/config.yml b/doc/config.yml index 43e40f2..55a0241 100644 --- a/doc/config.yml +++ b/doc/config.yml @@ -24,7 +24,7 @@ menu: identifier: task-syntax weight: 5 - name: pkg.go.dev → - url: https://pkg.go.dev/github.com/joe-davidson1802/xc + url: https://pkg.go.dev/github.com/joerdav/xc weight: 100 security: diff --git a/doc/content/_introduction.md b/doc/content/_introduction.md index ff894ea..b315e65 100644 --- a/doc/content/_introduction.md +++ b/doc/content/_introduction.md @@ -1,14 +1,14 @@ # xc - Simple, Convenient, Markdown defined task runner. -[![test](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml/badge.svg)](https://github.com/joe-davidson1802/xc/actions/workflows/test.yaml) -[![docs](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml/badge.svg)](https://github.com/joe-davidson1802/xc/actions/workflows/docs.yml) -[![Go Reference](https://pkg.go.dev/badge/github.com/joe-davidson1802/xc.svg)](https://pkg.go.dev/github.com/joe-davidson1802/xc) +[![test](https://github.com/joerdav/xc/actions/workflows/test.yaml/badge.svg)](https://github.com/joerdav/xc/actions/workflows/test.yaml) +[![docs](https://github.com/joerdav/xc/actions/workflows/docs.yml/badge.svg)](https://github.com/joerdav/xc/actions/workflows/docs.yml) +[![Go Reference](https://pkg.go.dev/badge/github.com/joerdav/xc.svg)](https://pkg.go.dev/github.com/joerdav/xc) ![xc](https://user-images.githubusercontent.com/19927761/156772881-10065864-ff4d-4225-ab2b-5adbbe628845.png) -[Docs](https://xcfile.dev/) | [Getting Started](https://xcfile.dev/getting-started/) | [Github](https://github.com/joe-davidson1802/xc) +[Docs](https://xcfile.dev/) | [Getting Started](https://xcfile.dev/getting-started/) | [Github](https://github.com/joerdav/xc) `xc` is a task runner designed to maximise convenience, and minimise complexity. @@ -23,7 +23,7 @@ Each `xc` task is defined in simple, human-readable Markdown. Meaning that for p # Example -Take the `tag` task in the [README.md](https://github.com/joe-davidson1802/xc#tag) of the `xc` repository: +Take the `tag` task in the [README.md](https://github.com/joerdav/xc#tag) of the `xc` repository: ```` ## tag @@ -45,17 +45,17 @@ The task could be run simply with `xc tag`, but a side-effect of it being an `xc ``` $ xc tag go test ./... -? github.com/joe-davidson1802/xc/cmd/xc [no test files] -? github.com/joe-davidson1802/xc/models [no test files] -ok github.com/joe-davidson1802/xc/parser (cached) -ok github.com/joe-davidson1802/xc/run (cached) +? github.com/joerdav/xc/cmd/xc [no test files] +? github.com/joerdav/xc/models [no test files] +ok github.com/joerdav/xc/parser (cached) +ok github.com/joerdav/xc/run (cached) export VERSION=78 echo Adding git tag with version v0.0.78 Adding git tag with version v0.0.78 git tag v0.0.78 git push origin v0.0.78 Total 0 (delta 0), reused 0 (delta 0), pack-reused 0 -To github.com:joe-davidson1802/xc +To github.com:joerdav/xc * [new tag] v0.0.78 -> v0.0.78 ``` diff --git a/doc/content/getting-started.md b/doc/content/getting-started.md index 8b49ba6..61b5926 100644 --- a/doc/content/getting-started.md +++ b/doc/content/getting-started.md @@ -9,16 +9,16 @@ weight: -7 ## Installation {{% details "Binary" %}} -Download the binary from [GitHub Releases](https://github.com/joe-davidson1802/xc/releases) and add to your `$PATH` +Download the binary from [GitHub Releases](https://github.com/joerdav/xc/releases) and add to your `$PATH` {{% /details %}} {{% details "Go Install" %}} ```sh -go install github.com/joe-davidson1802/xc/cmd/xc@latest +go install github.com/joerdav/xc/cmd/xc@latest ``` {{% /details %}} {{% details "Homebrew" %}} ```sh -brew tap joe-davidson1802/xc +brew tap joerdav/xc brew install xc ``` {{% /details %}} diff --git a/doc/layouts/_default/single.html b/doc/layouts/_default/single.html index 13cd216..63fcf06 100644 --- a/doc/layouts/_default/single.html +++ b/doc/layouts/_default/single.html @@ -5,7 +5,7 @@

{{ .LinkTitle }}

{{ .Description }}
+ href="https://github.com/joerdav/xc/blob/main/doc/content/{{.File.Path }}"> [edit] diff --git a/doc/layouts/partials/sidebar.html b/doc/layouts/partials/sidebar.html index d3bdbaf..d3f917f 100644 --- a/doc/layouts/partials/sidebar.html +++ b/doc/layouts/partials/sidebar.html @@ -1,5 +1,5 @@ diff --git a/go.mod b/go.mod index 1e5a22f..a339fe8 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/joe-davidson1802/xc +module github.com/joerdav/xc go 1.16 diff --git a/parser/parser.go b/parser/parser.go index 9f8d150..7d94bd8 100644 --- a/parser/parser.go +++ b/parser/parser.go @@ -7,7 +7,7 @@ import ( "io" "strings" - "github.com/joe-davidson1802/xc/models" + "github.com/joerdav/xc/models" ) // TRIM_VALUES are the characters that should be ignored in titles and attributes diff --git a/parser/parser_test.go b/parser/parser_test.go index 36df2b1..dfd45a0 100644 --- a/parser/parser_test.go +++ b/parser/parser_test.go @@ -6,7 +6,7 @@ import ( "testing" "github.com/google/go-cmp/cmp" - "github.com/joe-davidson1802/xc/models" + "github.com/joerdav/xc/models" ) //go:embed testdata/example.md diff --git a/run/run.go b/run/run.go index 001fa72..d25e0f4 100644 --- a/run/run.go +++ b/run/run.go @@ -8,7 +8,7 @@ import ( "runtime" "strings" - "github.com/joe-davidson1802/xc/models" + "github.com/joerdav/xc/models" ) const MAX_DEPS = 50 diff --git a/run/run_test.go b/run/run_test.go index b7293a3..b6be9b5 100644 --- a/run/run_test.go +++ b/run/run_test.go @@ -7,7 +7,7 @@ import ( "testing" "github.com/google/go-cmp/cmp" - "github.com/joe-davidson1802/xc/models" + "github.com/joerdav/xc/models" ) func TestRun(t *testing.T) {