mirror of
https://github.com/go-task/task.git
synced 2025-06-23 00:38:19 +02:00
feat: don't send entire include to node resolvers
This commit is contained in:
@ -9,7 +9,6 @@ import (
|
||||
"github.com/go-task/task/v3/errors"
|
||||
"github.com/go-task/task/v3/internal/experiments"
|
||||
"github.com/go-task/task/v3/internal/logger"
|
||||
"github.com/go-task/task/v3/taskfile/ast"
|
||||
)
|
||||
|
||||
type Node interface {
|
||||
@ -19,8 +18,8 @@ type Node interface {
|
||||
Dir() string
|
||||
Optional() bool
|
||||
Remote() bool
|
||||
ResolveIncludeEntrypoint(include ast.Include) (string, error)
|
||||
ResolveIncludeDir(include ast.Include) (string, error)
|
||||
ResolveIncludeEntrypoint(entrypoint string) (string, error)
|
||||
ResolveIncludeDir(dir string) (string, error)
|
||||
}
|
||||
|
||||
func NewRootNode(
|
||||
|
Reference in New Issue
Block a user