This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-10-10
Channels
- # aleph (2)
- # arachne (1)
- # beginners (5)
- # boot (33)
- # cider (12)
- # cljs-dev (6)
- # cljsrn (26)
- # clojure (33)
- # clojure-austin (7)
- # clojure-belgium (6)
- # clojure-chicago (1)
- # clojure-dusseldorf (1)
- # clojure-fr (1)
- # clojure-hamburg (1)
- # clojure-nl (11)
- # clojure-portugal (3)
- # clojure-russia (14)
- # clojure-spec (35)
- # clojure-uk (28)
- # clojurescript (49)
- # component (7)
- # core-async (75)
- # cursive (13)
- # datomic (15)
- # dirac (57)
- # emacs (5)
- # events (1)
- # hoplon (34)
- # jobs (2)
- # jobs-discuss (8)
- # lambdaisland (1)
- # lein-figwheel (7)
- # leiningen (3)
- # om (5)
- # onyx (8)
- # re-frame (56)
- # reagent (13)
- # testing (7)
- # untangled (30)
- # vim (51)
- # yada (17)
why is it when I go to https://clojars.org/repo/tailrecursion/boot-core/ it only shows version 2.0.0-SNAPSHOT but when I go to http://clojars.org and search for it it shows the current 2.5.1 (and my boot dev process is choking on it, essentially agreeing with the former link)?
oh, but maybe I was using the wrong format require (from the gist above) [tailrecursion.boot.core/version "2.5.1"]
instead of: [tailrecursion/boot.core "2.5.1"]
@vigilancetech that tailrecursion
is the old boot1. The current boot
is https://clojars.org/boot/core
So, I'm getting this error: clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: No such var: ana/munge-path, compiling:(cljs/compiler.clj:1025:25) on cljs compiler version 1.7.228-1. Does that mean I have to downgrade? And if so, how do I find out how far? I already tried looking thru the git log and no mention of munge-path
@vigilancetech can you paste the whole expection? But you probably should upgrade, latest ones are 1.9.x
@mynomoto looks like I have 1.9.229 to me: http://pastebin.ca/3727129
looks like its part of the cljs.analyzer here: https://github.com/clojure/clojurescript/blob/master/src/main/cljs/cljs/js.cljs (although the project.clj file doesn't have a dependency for it that I can see: https://github.com/clojure/clojurescript/blob/master/project.clj )
@vigilancetech I don't have too much advice on that, but you may have problems setting the clojure version on the project if it's different from your boot.properties
file. I have not used lighttable in years and I only made it work with clojurescript once.
@mynomoto what are you using these days?
I was trying to use emacs but I could NOT get ctags to work for the clj(s) files
Is hoplon supposed to pass its tests? Ran 1 tests containing 136 assertions. 130 failures, 0 errors.
@vigilancetech: probably not, we started moving things around
is there a name for a formula cell with side effects?
like (j/cell= (when foo? (bar!)))
trying to think of a good name for a file to put these in, to help stay organised
“events” isn’t really right
@thedavidmeister hoplon do-watch
for that https://github.com/hoplon/hoplon/blob/master/src/hoplon/core.cljs#L38
@mynomoto interesting
still, my use case looked a little more complicated than what i put up ^^
(j/cell= (when (and ready? auth0.state/user-profile)
(-> auth0.state/user-profile
sentry-io.api/auth0->sentry
sentry-io.api/user!)))
combining https://auth0.com/ and https://sentry.io/welcome/ with a cell 🙂
i pretty commonly find myself relying on 2+ cells these days
the project naturally got a little more complicated like that
@micha the weird thing is that's very similar to ui test and it compiles fine (well, with a couple apparently unrelated warnings)