Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upCSS assets in package but unable to retrieve #21
Comments
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
danielsz
Feb 18, 2015
Contributor
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)))|
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))) |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
rwillig
Feb 22, 2015
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.
rwillig
commented
Feb 22, 2015
|
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. |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
|
|
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Deraen
Oct 26, 2016
Member
I think this is quite well documented nowadays: https://github.com/cljsjs/packages/wiki/Non-JS-Assets
|
I think this is quite well documented nowadays: https://github.com/cljsjs/packages/wiki/Non-JS-Assets |
danielsz commentedFeb 18, 2015
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?