Closed danielsz closed 8 years ago
With guidance from @micha, I managed to retrieve the coveted assets with following invocation:
(sift :to-resource #{#"images"})
(sift :to-resource #{#"leaflet.inc.css"})
Inside a task, for example:
(deftask build-dev []
(comp
(from-cljsjs :profile :development)
(sift :to-resource #{#"images"})
(sift :to-resource #{#"leaflet.inc.css"})
(cljs :optimizations :none :unified-mode true)))
@danielsz
I had a different but similar experience. if you are using any cljsjs libraries which have additional .inc.js files like, for example, moment which has about 70 locale files which all end in .inc.js, running from-cljsjs before the cljs task will bring all those .inc.js files into your target. This is most probably not what you want; it certainly wasn't good for my project. I've adopted the practice of calling from-cljsjs after cljs task in those instances where i need to use it at all.
:+1:
I think this is quite well documented nowadays: https://github.com/cljsjs/packages/wiki/Non-JS-Assets
The from-cljsjs task won't don't do anything to the CSS assets even if present in packages. I would like to sift them to my target directory. I have tried unsuccessfully to do that with the sift task. Can anyone help? Maybe an example sift invocation, or better, a from-cljsjs-css task that will put the CSS in the target directory, maybe under CSS?