URI: 
       Fix deprecation warning for resources.ToCSS - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 8fb933550f5269e2f21ec09ab66801b28e603bea
   DIR parent a3684c836111a51d5827f89144f63b8318de6995
  HTML Author: Andreas Deininger <andreas@deininger.net>
       Date:   Fri, 30 Aug 2024 22:15:29 +0200
       
       Fix deprecation warning for resources.ToCSS
       
       Diffstat:
         M tpl/resources/resources.go          |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/tpl/resources/resources.go b/tpl/resources/resources.go
       @@ -310,14 +310,14 @@ func (ns *Namespace) Minify(r resources.ResourceTransformer) (resource.Resource,
        // for the converted CSS resource.
        // Deprecated: Moved to the css namespace in Hugo 0.128.0.
        func (ns *Namespace) ToCSS(args ...any) (resource.Resource, error) {
       -        hugo.Deprecate("resources.ToCSS", "Use css.SASS.", "v0.128.0")
       +        hugo.Deprecate("resources.ToCSS", "Use css.Sass instead.", "v0.128.0")
                return ns.cssNs.Sass(args...)
        }
        
        // PostCSS processes the given Resource with PostCSS.
        // Deprecated: Moved to the css namespace in Hugo 0.128.0.
        func (ns *Namespace) PostCSS(args ...any) (resource.Resource, error) {
       -        hugo.Deprecate("resources.PostCSS", "Use css.PostCSS.", "v0.128.0")
       +        hugo.Deprecate("resources.PostCSS", "Use css.PostCSS instead.", "v0.128.0")
                return ns.cssNs.PostCSS(args...)
        }