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

Improvements and CHANGELOG for #651

This commit is contained in:
Andrey Nering
2022-02-19 19:31:27 -03:00
parent cfb665310e
commit b323531dd5
8 changed files with 103 additions and 100 deletions

View File

@@ -3,15 +3,13 @@ package taskfile
import (
"fmt"
"strconv"
"github.com/go-task/task/v3/internal/output"
)
// Taskfile represents a Taskfile.yml
type Taskfile struct {
Version string
Expansions int
Output output.Style
Output Output
Method string
Includes *IncludedTaskfiles
Vars *Vars
@@ -27,7 +25,7 @@ func (tf *Taskfile) UnmarshalYAML(unmarshal func(interface{}) error) error {
var taskfile struct {
Version string
Expansions int
Output output.Style
Output Output
Method string
Includes *IncludedTaskfiles
Vars *Vars