yogthos / lein-asset-minifier

Leiningen plugin for CSS/Js asset minifcation
Eclipse Public License 1.0
41 stars 7 forks source link

'minify-assets' is not a task #12

Closed BooBSD closed 8 years ago

BooBSD commented 8 years ago

Hello,

I added [lein-asset-minifier "0.2.8"] to :dependencies and

:minify-assets
   {:assets
     {"resources/public/css/site.min.css" "dev/resources/public/css"}}

to my project.clj. But I got this message:

$ lein minify-assets
'minify-assets' is not a task. See 'lein help'.
yogthos commented 8 years ago

Try adding it to the :plugins instead.

BooBSD commented 8 years ago

Thanks.