mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Allow Dart Sass transformations to be cached on disk
This enbles people to build their sites/themes on servers where the Dart Sass binary is not available.
This commit is contained in:
parent
48994ea766
commit
ffbf5e45fa
1 changed files with 4 additions and 2 deletions
|
@ -51,9 +51,11 @@ var (
|
||||||
// These are transformations that need special support in Hugo that may not
|
// These are transformations that need special support in Hugo that may not
|
||||||
// be available when building the theme/site so we write the transformation
|
// be available when building the theme/site so we write the transformation
|
||||||
// result to disk and reuse if needed for these,
|
// result to disk and reuse if needed for these,
|
||||||
|
// TODO(bep) it's a little fragile having these constants redefined here.
|
||||||
var transformationsToCacheOnDisk = map[string]bool{
|
var transformationsToCacheOnDisk = map[string]bool{
|
||||||
"postcss": true,
|
"postcss": true,
|
||||||
"tocss": true,
|
"tocss": true,
|
||||||
|
"tocss-dart": true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func newResourceAdapter(spec *Spec, lazyPublish bool, target transformableResource) *resourceAdapter {
|
func newResourceAdapter(spec *Spec, lazyPublish bool, target transformableResource) *resourceAdapter {
|
||||||
|
|
Loading…
Reference in a new issue