This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-02-23
Channels
- # announcements (11)
- # architecture (14)
- # babashka (34)
- # bangalore-clj (8)
- # beginners (108)
- # calva (10)
- # cider (19)
- # circleci (9)
- # clj-kondo (19)
- # clojars (4)
- # clojure (62)
- # clojure-australia (2)
- # clojure-europe (62)
- # clojure-italy (14)
- # clojure-nl (8)
- # clojure-poland (1)
- # clojure-spec (14)
- # clojure-uk (59)
- # clojurescript (14)
- # community-development (5)
- # conjure (2)
- # core-async (10)
- # cryogen (1)
- # cursive (11)
- # data-science (1)
- # datahike (13)
- # datomic (21)
- # deps-new (4)
- # ethereum (1)
- # events (4)
- # fulcro (34)
- # helix (2)
- # jobs (2)
- # juxt (33)
- # kaocha (4)
- # lsp (18)
- # malli (4)
- # membrane (2)
- # off-topic (23)
- # re-frame (3)
- # reitit (4)
- # remote-jobs (1)
- # reveal (6)
- # shadow-cljs (47)
- # slack-help (2)
- # spacemacs (5)
- # sql (45)
- # startup-in-a-month (6)
- # testing (4)
- # tools-deps (21)
- # xtdb (4)
https://twitter.com/CursiveIDE/status/1364018625728847874 (@coyotesqrl, @kenny, @alex-eberts and others)
Additionally, the latest version of Clojure CLI 1.10.2.796 also fixes the issues so upgrading either should address this - this one was on me, apologies
Have there been any changes about how to work with lein v
projects recently? I have a project I’ve been working with for several weeks and just in the last few days I’ve done something that prevents me from starting a new REPL in Cursive, though I can connect to a remote one fine. I get an error like this: ERROR - intellij.openapi.progress.Task - resources/version.edn (No such file or directory)
`. I have an existing workaround in prep-tasks
in the format described here: https://github.com/roomkey/lein-v/issues/26
@U01LG1KAC65 I don’t think anything has changed in any of that code for ages. I’ll see if I can reproduce this and fix it properly.
Thank you — it may be my workaround which is no longer necessary — I had this, per that GitHub issue for lein-v:
:prep-tasks [~(when (System/getenv "PWD") ["v" "cache" "resources" "edn"])]
I will look and see if this is no longer necessary in my setup.
The other thing I had to do was documented in here (for opening the project the first time), which I believe is unrelated to the current issue I’m seeing.
https://github.com/cursive-ide/cursive/issues/1999Thanks - I tried the pre-tasks without the check and still yields an error, so I think it’s behaving similarly to the lein-v issue posted at the start of this thread.
:prep-tasks [["v" "cache" "resources" "edn"]]
@U01LG1KAC65 Ok, I’ve fixed both #1999 and also lein-v/#26, so they (and other cases) should hopefully work without workarounds now. I’m not sure which release that will make it into since it’s a change to a fairly sensitive part of the lein integration. I’ll probably release 1.10.1 and then get this into the first release of the 1.10.2 EAP.
Thank you so much! Please let me know if I can assist in any way. I appreciate your quick help here - I’m relatively new to Clojure, so this change will remove one little hurdle as I get acclimated. It’s a big help for me.