https://github.com/gfpeltier/lein-jsass
Leiningen plugin for jsass
https://github.com/gfpeltier/lein-jsass
clojure clojurescript jsass lein-plugin leiningen sass scss
Last synced: 3 months ago
JSON representation
Leiningen plugin for jsass
- Host: GitHub
- URL: https://github.com/gfpeltier/lein-jsass
- Owner: gfpeltier
- License: mit
- Created: 2018-09-01T20:58:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-28T23:01:03.000Z (about 7 years ago)
- Last Synced: 2025-10-21T23:02:13.890Z (5 months ago)
- Topics: clojure, clojurescript, jsass, lein-plugin, leiningen, sass, scss
- Language: Clojure
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# lein-jsass
[](https://travis-ci.org/grantpeltier/lein-jsass)
[](https://clojars.org/lein-jsass)
A Leiningen plugin that wraps [jsass](https://github.com/bit3/jsass)
## Usage
Put `[lein-jsass "0.2.0"]` into the `:plugins` vector of your project.clj.
Also add the following config information to your project.clj:
```clojure
:jsass {:source "path/to/scss/files"
:target "path/to/css/output"}
```
lein-jsass may be used to either compile once or to run continuously
and recompile whenever file changes are detected under the source path.
Run once:
```
$ lein jsass once
```
Run continuously:
```
$ lein jsass auto
```
**NOTE:** Only public (i.e. does not start with '_') SASS files will be compiled
and placed in the target.
## License
Copyright © 2018 Grant Peltier
Distributed under the MIT License