diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-05-14 15:51:04 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2022-05-15 20:25:25 +0200 |
commit | 4b189d8fd93d3fa326b31d451d5594c917e6c714 (patch) | |
tree | c3515876c474caab2df6d0a34291bcc3ca8e75df /hugofs | |
parent | c2fa0a33209da7cfd9a09f8fc528415578a9edf8 (diff) | |
download | hugo-4b189d8fd93d3fa326b31d451d5594c917e6c714.tar.gz hugo-4b189d8fd93d3fa326b31d451d5594c917e6c714.zip |
postcss: Fix import error handling
Note that we will now fail if `inlineImports` is enabled and we cannot resolve an import.
You can work around this by either:
* Use url imports or imports with media queries.
* Set `skipInlineImportsNotFound=true` in the options
Also get the argument order in the different NewFileError* funcs in line.
Fixes #9895
Diffstat (limited to 'hugofs')
-rw-r--r-- | hugofs/fileinfo.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/hugofs/fileinfo.go b/hugofs/fileinfo.go index d923d632d..1d46a7464 100644 --- a/hugofs/fileinfo.go +++ b/hugofs/fileinfo.go @@ -139,6 +139,17 @@ type fileInfoMeta struct { m *FileMeta } +type filenameProvider interface { + Filename() string +} + +var _ filenameProvider = (*fileInfoMeta)(nil) + +// Filename returns the full filename. +func (fi *fileInfoMeta) Filename() string { + return fi.m.Filename +} + // Name returns the file's name. Note that we follow symlinks, // if supported by the file system, and the Name given here will be the // name of the symlink, which is what Hugo needs in all situations. |