Closed eliascotto closed 2 years ago
Similar problem here. I'm loading the dependencies via deps.edn
but Clojure, CLJS and shadow-cljs are all most recent versions.
Any advice? Or where should the fix come from?
{:paths ["src"]
:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/"}
"clojars" {:url "https://clojars.org/repo"}}
:deps {
org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/clojurescript {:mvn/version "1.11.4"}
thheller/shadow-cljs {:mvn/version "2.17.5"}
binaryage/devtools {:mvn/version "1.0.3"}
re-frisk/re-frisk {:mvn/version "1.5.1"}
cljsjs/react {:mvn/version "17.0.2-0"}
re-frame/re-frame {:mvn/version "1.2.0"}
reagent/reagent {:mvn/version "1.1.0"}
; Vim Iced deps
refactor-nrepl/refactor-nrepl {:mvn/version "3.3.2"}
cider/cider-nrepl {:mvn/version "0.28.2"}
com.github.liquidz/iced-nrepl {:mvn/version "1.2.8"}
cljs-web3-next/cljs-web3-next {:local/root "../district0x/cljs-web3-next"}
}}
@madis Clojurescript has been updated to 1.10.844
but without a release, so Clojure is downloading the old release 0.9.2
with an incompatible cljs dependency.
I found a temporary solution, fork the repo and create a new release. It will remove the message once you replaced the repo in deps.edn
as
io.github.elias94/chromex {:git/tag "v0.9.3" :git/sha "73bf909"}
@darwin Is possible to create a new release 0.9.3
?
I created a new chromex extension using this template with shadow-cljs. Building it I'm getting that error in the
background
file on the startup.Debugging, I found that this portion is generating the error.
With this macro call inside
I know from this issue that the problem is related to the version of clojurescript used.
This is my
deps.edn
file and if I'm not wrong, chromex 0.9.2 uses at least version1.10.844
wheregoog.isBoolean
has been removed.