package postcss
import "github.com/gohugoio/hugo/resources/resource_transformers/postcss"
Index ¶
- type Client
- func New(rs *resources.Spec) *Client
- func (c *Client) Process(res resources.ResourceTransformer, options map[string]any) (resource.Resource, error)
- type Options
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is the client used to do PostCSS transformations.
func New ¶
New creates a new Client with the given specification.
func (*Client) Process ¶
func (c *Client) Process(res resources.ResourceTransformer, options map[string]any) (resource.Resource, error)
Process transforms the given Resource with the PostCSS processor.
type Options ¶
type Options struct { // Set a custom path to look for a config file. Config string NoMap bool // Disable the default inline sourcemaps // Enable inlining of @import statements. // Does so recursively, but currently once only per file; // that is, it's not possible to import the same file in // different scopes (root, media query...) // Note that this import routine does not care about the CSS spec, // so you can have @import anywhere in the file. InlineImports bool // When InlineImports is enabled, we fail the build if an import cannot be resolved. // You can enable this to allow the build to continue and leave the import statement in place. // Note that the inline importer does not process url location or imports with media queries, // so those will be left as-is even without enabling this option. SkipInlineImportsNotFound bool // Options for when not using a config file Use string // List of postcss plugins to use Parser string // Custom postcss parser Stringifier string // Custom postcss stringifier Syntax string // Custom postcss syntax }
Some of the options from https://github.com/postcss/postcss-cli
Source Files ¶
- Version
- v0.112.5
- Published
- May 29, 2023
- Platform
- linux/amd64
- Imports
- 24 packages
- Last checked
- 4 hours ago –
Tools for package owners.