summaryrefslogtreecommitdiffstats
path: root/deps/deps.go
diff options
context:
space:
mode:
Diffstat (limited to 'deps/deps.go')
-rw-r--r--deps/deps.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/deps.go b/deps/deps.go
index 188863876..99763c115 100644
--- a/deps/deps.go
+++ b/deps/deps.go
@@ -8,6 +8,7 @@ import (
"github.com/spf13/hugo/config"
"github.com/spf13/hugo/helpers"
"github.com/spf13/hugo/hugofs"
+ "github.com/spf13/hugo/output"
"github.com/spf13/hugo/tpl"
jww "github.com/spf13/jwalterweatherman"
)
@@ -39,6 +40,9 @@ type Deps struct {
Language *helpers.Language
+ // All the output formats available for the current site.
+ OutputFormatsConfig output.Formats
+
templateProvider ResourceProvider
WithTemplate func(templ tpl.TemplateHandler) error `json:"-"`