1
0
mirror of https://github.com/go-task/task.git synced 2025-11-29 22:48:03 +02:00

github.com/go-task/task/v2 -> github.com/go-task/task/v3

This commit is contained in:
Andrey Nering
2020-08-16 15:48:19 -03:00
parent 49bf395f61
commit fb72b46a3c
24 changed files with 67 additions and 67 deletions

View File

@@ -1,7 +1,7 @@
package compiler
import (
"github.com/go-task/task/v2/internal/taskfile"
"github.com/go-task/task/v3/internal/taskfile"
)
// Compiler handles compilation of a task before its execution.

View File

@@ -4,7 +4,7 @@ import (
"os"
"strings"
"github.com/go-task/task/v2/internal/taskfile"
"github.com/go-task/task/v3/internal/taskfile"
)
// GetEnviron the all return all environment variables encapsulated on a

View File

@@ -7,11 +7,11 @@ import (
"strings"
"sync"
"github.com/go-task/task/v2/internal/compiler"
"github.com/go-task/task/v2/internal/execext"
"github.com/go-task/task/v2/internal/logger"
"github.com/go-task/task/v2/internal/taskfile"
"github.com/go-task/task/v2/internal/templater"
"github.com/go-task/task/v3/internal/compiler"
"github.com/go-task/task/v3/internal/execext"
"github.com/go-task/task/v3/internal/logger"
"github.com/go-task/task/v3/internal/taskfile"
"github.com/go-task/task/v3/internal/templater"
)
var _ compiler.Compiler = &CompilerV2{}

View File

@@ -7,11 +7,11 @@ import (
"strings"
"sync"
"github.com/go-task/task/v2/internal/compiler"
"github.com/go-task/task/v2/internal/execext"
"github.com/go-task/task/v2/internal/logger"
"github.com/go-task/task/v2/internal/taskfile"
"github.com/go-task/task/v2/internal/templater"
"github.com/go-task/task/v3/internal/compiler"
"github.com/go-task/task/v3/internal/execext"
"github.com/go-task/task/v3/internal/logger"
"github.com/go-task/task/v3/internal/taskfile"
"github.com/go-task/task/v3/internal/templater"
)
var _ compiler.Compiler = &CompilerV3{}