CleanCSS - is a tool that removes unused CSS stylesheets
cleancss/cleancss {:mvn/version "RELEASE"}
cleancss.edn
configuration file in the root directory of the project:{;; project sources
:watch-dirs ["src"]
:application
{;; :all - Includes all functions `cleancss.defaults/functions`. Or a custom set #{":lang" ...}
:functions :all
;; :all - Includes all pseudos `cleancss.defaults/pseudos`. Or a custom set #{":hover" ...}
:pseudos :all
;; :all - Includes all types `cleancss.defaults/types`. Or a custom set #{"*", "div" ...}
:types :all
;; If you do not specify a value, the data will be taken from the application
;; :identifiers #{"id"}
;; :classes #{"name"}
;; :attributes #{["hidden"] ["hreflang" "en"]}
}
:build
{;; Path to the source css file
:import {:input-files ["resources/public/css/tailwind.min.css"]}
;; The path to the file where the final result will be stored
:export {:output-file "resources/public/css/cleancss.css"}}}
cleancss.hooks/reset
before building the project and cleancss.hooks/build
after building.For example, in figwheel-main, this is configured as follows: :clean-outputs true
:pre-build-hooks [cleancss.hooks/reset]
:post-build-hooks [cleancss.hooks/build]
(ns app.core
(:require
[cleancss.utils :refer [c i a]))
(defn component
[]
;; classes
[:nav {:class (c "shadow-md" "rounded-lg")}
;; identifiers
[:button {:id (i "id")}
"Login"]
;; attributes, classes, identifiers
[:button (a {:id "send" :class ["save"] :type "button"})
"Info"]])
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close