summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Mooring <joe.mooring@veriphor.com>2024-06-13 06:11:39 -0700
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2024-06-13 16:25:50 +0200
commit57165d44ede02da430d444b989a19100d1ae004d (patch)
tree707d973031a77979e99a5e3e0b4e3e26a22afe61
parent7ee36b3718790f1dc4a2722f925acc6e3fd3caea (diff)
resources: Update Dart Sass error message
-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/"
}