Fork me on GitHub
#leiningen
<
2018-01-13
>
justinlee18:01:18

Is it possible to get a sass watcher and figwheel to run at the same time? This works rlwrap lein do sass4clj once, figwheel whereas this just runs the sass watcher and never starts figwheel: rlwrap lein do sass4clj auto, figwheel. I assume that is because the sass watcher never completes. Is there something I can do get both watchers to run from one command line? I really just want a “build all the things and hot reload them” command.

noisesmith18:01:55

to do things in parallel you can use lein pdo

justinlee18:01:52

@noisesmith sweet thanks! works like a charm