Improve error message when no Babel installed

This commit is contained in:
Bjørn Erik Pedersen 2020-05-16 12:50:57 +02:00
parent 6e051c053e
commit 2fd0a5a678
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F

View file

@ -408,6 +408,8 @@ func (r *resourceAdapter) transform(publish, setContent bool) error {
errMsg = ". Check your PostCSS installation; install with \"npm install postcss-cli\". See https://gohugo.io/hugo-pipes/postcss/"
} else if tr.Key().Name == "tocss" {
errMsg = ". Check your Hugo installation; you need the extended version to build SCSS/SASS."
} else if tr.Key().Name == "babel" {
errMsg = ". You need to install Babel, see https://gohugo.io/hugo-pipes/babel/"
}
return errors.New(msg + errMsg)