Skip to content

Commit 9913492

Browse files
authored
Prepare for v3 release (#34)
1 parent 96d30fa commit 9913492

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cmd/prettier/main.go

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

12-
"github.com/wasilibs/go-prettier/internal/runner"
12+
"github.com/wasilibs/go-prettier/v3/internal/runner"
1313
)
1414

1515
const usage = `

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/wasilibs/go-prettier
1+
module github.com/wasilibs/go-prettier/v3
22

33
go 1.22.3
44

internal/runner/expandpaths.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
"github.com/bmatcuk/doublestar/v4"
1313

14-
"github.com/wasilibs/go-prettier/internal/gitignore"
14+
"github.com/wasilibs/go-prettier/v3/internal/gitignore"
1515
)
1616

1717
// https://github.com/prettier/prettier/blob/main/src/cli/expand-patterns.js

internal/runner/runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"golang.org/x/sync/errgroup"
2121
"gopkg.in/yaml.v3"
2222

23-
"github.com/wasilibs/go-prettier/internal/wasm"
23+
"github.com/wasilibs/go-prettier/v3/internal/wasm"
2424
)
2525

2626
var (

prettier_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
"github.com/stretchr/testify/require"
1313

14-
"github.com/wasilibs/go-prettier/internal/runner"
14+
"github.com/wasilibs/go-prettier/v3/internal/runner"
1515
)
1616

1717
//go:embed testdata/in

0 commit comments

Comments
 (0)