Fork me on GitHub
#cursive
<
2020-11-16
>
saitouena07:11:54

Thanks for your replies. What I want to do is making cursive to recognize shadow-cljs.edn dependencies without modifying my project.clj. I added shadow-cljs dependencies to :dev profile of my project.clj for a remedy but I don't like it. https://github.com/cursive-ide/cursive/issues/1804#issuecomment-528441496 I tried this with the following steps: • generate pom.xml with shadow-cljs pom • right click pom.xml and choose "Add as a Maven project" Cursive hasn't recognize my shadow-cljs dependencies yet. It reports rf cannot be resolved on (:require [[re-frame.core :as rf]]) . Is there anything to do on top of that?

cfleming07:11:59

That should be (:require [re-frame.core :as rf])

3
cfleming07:11:22

You have your []s doubled up.

saitouena08:11:54

It's my typo. My actual source code is ok.