klipse

oly 2022-06-30T07:51:24.380559Z

bit confused on the require statementin klipse how does it work ? (require '[reagent.core :as r]) work where as (require '[honey.sql.helpers :as sqlh]) does not do I need to include the library in my deps when compiling the project, or is it supposed to pull it in remotely ?

Yehonathan Sharvit 2022-06-30T10:36:06.923749Z

Some namespaces are available from an analysis cache repository https://github.com/viebel/cljs-analysis-cache/blob/master/cache-shadow/shadow-cljs.edn

Yehonathan Sharvit 2022-06-30T10:36:29.322819Z

For arbitrary libraries, you need to use external-libs flag

Yehonathan Sharvit 2022-06-30T10:36:40.173739Z

Are you talking about Klipse the Webapp or Klipse the JS plugin?

oly 2022-06-30T11:09:23.867129Z

I am importing klipse into a cljs project, so I guess a webapp is that data-external-libs or can you specify the libs to klipse before hand as a setting ?