lumo

:lumo: Standalone ClojureScript environment. Currently at version 1.9.0
dehli 2018-01-19T01:29:51.000039Z

anyone here used b/node-inputs with lumo?

richiardiandrea 2018-01-19T02:11:06.000239Z

@dehli uhm I am not familiar with that, where is it showing?

dehli 2018-01-19T02:11:55.000069Z

Iโ€™m trying to figure out how to bundle npm dependencies into the generated js file

richiardiandrea 2018-01-19T02:15:19.000091Z

@dehli so I have never tried that but being an alpha in Cljs, I would say expect many more bumps in lumo

dehli 2018-01-19T02:18:39.000167Z

Ya, that makes sense. I think Iโ€™m running into issues on the cljs side though and not lumo at this point

๐Ÿ‘ 1
dehli 2018-01-19T16:21:29.000548Z

Hey all, Iโ€™m trying to use lumo to run some frontend tests, but itโ€™s not finding my installed clojars (they are installed through boot). Is there an example out there of how this would look?

dehli 2018-01-19T16:23:13.000534Z

would i need to create a pom file and then use maven to generate the class path for those files and then pass that to lumo?

dehli 2018-01-19T16:29:12.000117Z

I see the -D flag which sounds like an easier path to go down. I think Iโ€™ll try sticking them in an edn file and then pulling them out from there

richiardiandrea 2018-01-19T16:31:32.000108Z

@dehli if your deps are already in .m2 then multiple -D should work

dehli 2018-01-19T16:35:34.000054Z

Ya, just trying to figure out how to store them so that boot and lumo could both use the same deps

dehli 2018-01-19T16:35:49.000005Z

Also thanks! ๐Ÿ™‚

dehli 2018-01-19T16:40:17.000327Z

Just found this issue which seems like a good option https://github.com/anmonteiro/lumo/issues/328 (using deps.edn)

richiardiandrea 2018-01-19T17:07:18.000620Z

I also usually generate a file contained the resolved dependencies with boot with-cp...it's similar to what you see in that issue

๐Ÿ‘ 1