Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ntoml/netlify_toml.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ type NetlifyToml struct {

// this is the default context
Build *BuildConfig `toml:"build" json:"build" yaml:"build"`
Plugins []Plugin `toml:"plugins" json:"plugins" yaml:"plugins"`
Context map[string]DeployContext `toml:"context,omitempty" json:"context,omitempty" yaml:"context,omitempty"`
}

Expand All @@ -42,7 +43,6 @@ type BuildConfig struct {
Publish string `toml:"publish" json:"publish" yaml:"publish"`
Ignore string `toml:"ignore" json:"ignore" yaml:"ignore"`
Environment map[string]string `toml:"environment" json:"environment" yaml:"environment"`
Plugins []Plugin `toml:"plugins" json:"plugins" yaml:"plugins"`
}

type Plugin struct {
Expand Down