shadow-cljs

https://github.com/thheller/shadow-cljs | https://github.com/sponsors/thheller | https://www.patreon.com/thheller
mauricio.szabo 2021-02-20T01:10:16.002700Z

Hi there! Is there any way to make shadow don't try to resolve a Javascript require? The problem I'm facing is that for some libraries that do run on the browser and are expected to be bundled by webapack, they sometimes wrap the require into a try...`catch` and then shadow tries to resolve it and fails

thheller 2021-02-20T08:45:55.003500Z

@mauricio.szabo :js-options {:resolve {"that-package" false}}

mauricio.szabo 2021-02-20T18:24:50.003700Z

Oh, great! Thanks again, it worked!