cljsjs / boot-cljsjs

Helper tasks to aid the packaging of JS dependencies for Clojurescript projects
66 stars 22 forks source link

CSS assets in package but unable to retrieve #21

Closed danielsz closed 7 years ago

danielsz commented 9 years ago

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?

danielsz commented 9 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)))
rwillig commented 9 years ago

@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.

danielsz commented 9 years ago

:+1:

Deraen commented 7 years ago

I think this is quite well documented nowadays: https://github.com/cljsjs/packages/wiki/Non-JS-Assets