summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--resources/resource_transformers/tocss/dartsass/transform.go2
-rw-r--r--resources/transform.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/resource_transformers/tocss/dartsass/transform.go b/resources/resource_transformers/tocss/dartsass/transform.go
index 52d24da7d..99a5c3f68 100644
--- a/resources/resource_transformers/tocss/dartsass/transform.go
+++ b/resources/resource_transformers/tocss/dartsass/transform.go
@@ -39,7 +39,7 @@ import (
"github.com/bep/godartsass/v2"
)
-// Supports returns whether dart-sass-embedded is found in $PATH.
+// Supports returns whether sass, dart-sass, or dart-sass-embedded is found in $PATH.
func Supports() bool {
if htesting.SupportsAll() {
return true
diff --git a/resources/transform.go b/resources/transform.go
index a8beddafe..9d8b5e915 100644
--- a/resources/transform.go
+++ b/resources/transform.go
@@ -493,7 +493,7 @@ func (r *resourceAdapter) transform(key string, publish, setContent bool) (*reso
} else if tr.Key().Name == "tocss" {
errMsg = ". Check your Hugo installation; you need the extended version to build SCSS/SASS with transpiler set to 'libsass'."
} else if tr.Key().Name == "tocss-dart" {
- errMsg = ". You need dart-sass-embedded in your system $PATH."
+ errMsg = ". You need to install Dart Sass, see https://gohugo.io/functions/resources/tocss/#dart-sass"
} else if tr.Key().Name == "babel" {
errMsg = ". You need to install Babel, see https://gohugo.io/hugo-pipes/babel/"
}