cljsjs

2017-11-30T15:56:29.000728Z

Any particular reason that https://github.com/react-bootstrap/react-overlays is not in cljsjs now?

2017-11-30T15:56:44.000527Z

(or is it just no one has wanted to add it)

juhoteperi 2017-11-30T16:13:43.000913Z

> or is it just no one has wanted to add it This is the cause for nearly all missing packages (in addition, some packages could be hard to package)

2017-11-30T16:16:51.000210Z

@juhoteperi Ah I see

2017-11-30T18:58:57.000169Z

If I’m trying to override the provided deps.cljs file from a cljsjs jar, is there a way I can still use the :file in :foreign-libs compiler opt to refer to the file within the jar?

2017-11-30T18:59:59.000363Z

e.g.

{:file "cljsjs/project/development/project.inc.js"
 :file-min "cljsjs/project/production/project.min.inc.js"
 :provides ["cljsjs.project"]
 :requires ["things.here"]}

2017-11-30T19:00:19.000606Z

I get file not found doing it this way. It seems to try to form an absolute file path based on my project root

2017-11-30T19:00:31.000424Z

I’m wondering if anyone has tried something like this here