Clojure wrapper for jsass JNA wrapper for Libsass. This repository also contains Boot and Leiningen tasks.
For parallel Less library check less4clj
[org.webjars.bower/bootstrap "4.0.0-alpha"]
to use Bootstrap_
are partial files and should not be compiled into CSS files.sass
task (deraen.boot-sass/sass
)inputs
option.sass
or .scss
file not starting with _
in the fileset creates equivalent .css
file.boot sass --help
for task options.sass4clj
taskinputs
option.sass
or .scss
file not starting with _
in source-dirs creates equivalent .css
file.lein help sass4clj
for options.Test in the repository:
clj -m sass4clj.main --source-paths test-resources
Check clj -m sass4clj.main --help
for options.
Loading order for @import "{name}";
on file at {path}
{path}/{name}.sass
or {path}/{name}.scss
(io/resource "{name}.ext")
(io/resource "{path}/{name}.ext")
META-INF/resources/webjars/{package}/{version}/{path}
can be referred using {package}/{path}
@import "bootstrap/scss/bootstrap.scss";
will import META-INF/resources/webjars/bootstrap/4.0.0-alpha/scss/bootstrap.scss
If you don't have any slf4j implementations you will see a warning:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
To disable this add a no operation logger to your project. As this is only required
on build phase, you can use :scope "test"
so that the dependency is not
transitive and is not included in uberjar. Alternatively you can add this
dependency to your Leiningen dev profile.
[org.slf4j/slf4j-nop "1.7.13" :scope "test"]
Copyright © 2014-2017 Juho Teperi
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close