From dbef522f893c406018e7a353709378f563b1a316 Mon Sep 17 00:00:00 2001 From: Tai Groot Date: Sat, 28 Jan 2023 02:32:10 -0800 Subject: [PATCH] make buildable by the general public --- cmd/cli/.gitignore | 1 + cmd/cli/cli.go | 1 - go.mod | 4 +--- go.sum | 2 ++ 4 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 cmd/cli/.gitignore diff --git a/cmd/cli/.gitignore b/cmd/cli/.gitignore new file mode 100644 index 0000000..573c0c4 --- /dev/null +++ b/cmd/cli/.gitignore @@ -0,0 +1 @@ +cli diff --git a/cmd/cli/cli.go b/cmd/cli/cli.go index 77e0bcf..6ca3489 100644 --- a/cmd/cli/cli.go +++ b/cmd/cli/cli.go @@ -31,7 +31,6 @@ func main() { fmt.Println() fmt.Println() fmt.Println() - freq, _ = commits.GlobalFrequency(time.Now().Year(), []string{""}) fmt.Println("year:") fmt.Println(term.GetYearUnicode(freq)) } diff --git a/go.mod b/go.mod index ef69e85..d978a95 100644 --- a/go.mod +++ b/go.mod @@ -4,8 +4,6 @@ go 1.19 replace github.com/charmbracelet/bubbles => github.com/taigrr/bubbles v0.10.5 -replace github.com/taigrr/mg => ../mg - replace github.com/muesli/termenv => github.com/taigrr/termenv v0.11.2 replace github.com/charmbracelet/lipgloss => github.com/taigrr/lipgloss v0.5.1 @@ -19,7 +17,7 @@ require ( github.com/muesli/termenv v0.13.0 github.com/srwiley/oksvg v0.0.0-20221011165216-be6e8873101c github.com/srwiley/rasterx v0.0.0-20220730225603-2ab79fcdd4ef - github.com/taigrr/mg v0.0.0-00010101000000-000000000000 + github.com/taigrr/mg v0.0.1 github.com/taigrr/simplecolorpalettes v0.9.6 ) diff --git a/go.sum b/go.sum index abf9a5f..a463f89 100644 --- a/go.sum +++ b/go.sum @@ -110,6 +110,8 @@ github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5Cc github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/taigrr/lipgloss v0.5.1 h1:lzmrLEzXyR/AOP/zGPPuIlmNuBKX81F3gHqn3/8e+bc= github.com/taigrr/lipgloss v0.5.1/go.mod h1:EZLha/HbzEt7cYqdFPovlqy5FZPj0xFhg5SaqxScmgs= +github.com/taigrr/mg v0.0.1 h1:dNAgYfmme2hTRLZZ9zazzFNXGKTQvXZ4qH+87ti+KYA= +github.com/taigrr/mg v0.0.1/go.mod h1:so3JCKn+rMZmRDAIOnYhsHDAQbBNEaxyNZVXZ5VbLeg= github.com/taigrr/simplecolorpalettes v0.9.6 h1:eEFLPdI1o34t+YHs+QlgxcpN4zOg+5S3SlWt2EMS/6o= github.com/taigrr/simplecolorpalettes v0.9.6/go.mod h1:MFLQqI3JOfSc+8GiO3amYfzBiozxITaQi+F1iEV8XpQ= github.com/taigrr/termenv v0.11.2 h1:oqZR08HjGIzFWml4ROmoFvWi3KRG4UZYTPRrI9/lrPA=