Skip to content

Commit 6e0a564

Browse files
committed
chore: bump v2 dep path
1 parent 91a9b00 commit 6e0a564

18 files changed

Lines changed: 27 additions & 27 deletions

cmd/anna/anna.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"os"
77
"sort"
88

9-
"github.com/acmpesuecc/anna/pkg/engine"
10-
"github.com/acmpesuecc/anna/pkg/helpers"
11-
"github.com/acmpesuecc/anna/pkg/parser"
9+
"github.com/acmpesuecc/anna/v2/pkg/engine"
10+
"github.com/acmpesuecc/anna/v2/pkg/helpers"
11+
"github.com/acmpesuecc/anna/v2/pkg/parser"
1212
)
1313

1414
type Cmd struct {

cmd/anna/livereload.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sync/atomic"
1111
"time"
1212

13-
"github.com/acmpesuecc/anna/pkg/helpers"
13+
"github.com/acmpesuecc/anna/v2/pkg/helpers"
1414
)
1515

1616
var reloadPage = make(chan struct{})

cmd/anna/validate_html.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99

1010
"github.com/PuerkitoBio/goquery"
11-
"github.com/acmpesuecc/anna/pkg/helpers"
11+
"github.com/acmpesuecc/anna/v2/pkg/helpers"
1212
)
1313

1414
func (cmd *Cmd) ValidateHTMLContent() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/acmpesuecc/anna
1+
module github.com/acmpesuecc/anna/v2
22

33
go 1.22.2
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
"time"
77

8-
"github.com/acmpesuecc/anna/cmd/anna"
8+
"github.com/acmpesuecc/anna/v2/cmd/anna"
99
"github.com/spf13/cobra"
1010
)
1111

main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main_test
33
import (
44
"testing"
55

6-
"github.com/acmpesuecc/anna/cmd/anna"
6+
"github.com/acmpesuecc/anna/v2/cmd/anna"
77
)
88

99
func BenchmarkMain(b *testing.B) {

pkg/engine/anna_engine.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"sync"
1313
"time"
1414

15-
"github.com/acmpesuecc/anna/pkg/helpers"
16-
"github.com/acmpesuecc/anna/pkg/parser"
15+
"github.com/acmpesuecc/anna/v2/pkg/helpers"
16+
"github.com/acmpesuecc/anna/v2/pkg/parser"
1717
)
1818

1919
type TagRootTemplateData struct {

pkg/engine/anna_engine_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/acmpesuecc/anna/pkg/engine"
13-
"github.com/acmpesuecc/anna/pkg/parser"
12+
"github.com/acmpesuecc/anna/v2/pkg/engine"
13+
"github.com/acmpesuecc/anna/v2/pkg/parser"
1414
)
1515

1616
func TestRenderTags(t *testing.T) {

pkg/engine/engine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
"strings"
99

10-
"github.com/acmpesuecc/anna/pkg/parser"
10+
"github.com/acmpesuecc/anna/v2/pkg/parser"
1111
)
1212

1313
// DeepDataMerge This struct holds all the ssg data

pkg/engine/engine_integration_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"slices"
88
"testing"
99

10-
"github.com/acmpesuecc/anna/pkg/engine"
11-
"github.com/acmpesuecc/anna/pkg/parser"
10+
"github.com/acmpesuecc/anna/v2/pkg/engine"
11+
"github.com/acmpesuecc/anna/v2/pkg/parser"
1212
)
1313

1414
func TestRenderUserDefinedPages(t *testing.T) {

0 commit comments

Comments
 (0)