Replies: 1 comment
-
package config
import (
"time"
"github.com/go-task/task/v3/taskfile"
"github.com/go-task/task/v3/taskfile/ast"
)
func NewTaskfileLoader() *TaskfileLoader {
return &TaskfileLoader{}
}
type TaskfileLoader struct{}
func (*TaskfileLoader) Load(folder, filename string) (*ast.Taskfile, error) {
node, err := taskfile.NewRootNode(nil, filename, folder, false, 60)
if err != nil {
return nil, err
}
reader := taskfile.NewReader(node, false, false, false, time.Duration(0), "/tmp", nil)
graph, err := reader.Read()
if err != nil {
return nil, err
}
t, err := graph.Merge()
if err != nil {
return nil, err
}
return t, err
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Need help refactoring task-ui to work with the latest version of task.
https://github.com/titpetric/task-ui/blob/main/server/config/taskfile.go:
I've gotten as far as:
Beta Was this translation helpful? Give feedback.
All reactions