This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-07-12
Channels
- # admin-announcements (2)
- # aleph (2)
- # arachne (16)
- # beginners (33)
- # boot (20)
- # bristol-clojurians (6)
- # capetown (4)
- # cider (50)
- # clojure (74)
- # clojure-austin (4)
- # clojure-canada (1)
- # clojure-china (2)
- # clojure-czech (1)
- # clojure-greece (1)
- # clojure-poland (4)
- # clojure-quebec (5)
- # clojure-russia (5)
- # clojure-spec (34)
- # clojure-uk (45)
- # clojurescript (131)
- # cursive (4)
- # datascript (2)
- # datomic (9)
- # editors (2)
- # emacs (2)
- # hoplon (173)
- # jobs (5)
- # lein-figwheel (3)
- # leiningen (1)
- # off-topic (1)
- # om (44)
- # onyx (8)
- # proton (10)
- # re-frame (81)
- # reagent (23)
- # untangled (57)
- # vim (2)
- # yada (8)
hi guys, have a little issue, i can't seem to load prone library from clojars, boot doesn't recognize the namespace [prone "1.1.1"] for some reason
@avabinary: build.boot is a program so when it encounters a symbol it cannot resolve it will throw an exception
To prevent Clojure from resolving symbols in the list of dependencies you need to quote either the symbol or the entire list of dependencies
eg. (set-env! :dependencies '[[prone "1.1.1"]])
or (set-env! :dependencies [['prone "1.1.1"]])
note the different positions of the '
quote
In comparison Leiningens project.clj
is implicitly quoted, i.e. it is data and not a program like build.boot
thanks @martinklepsch now it works
there is an (:import ) in .clj file it mentioned in boot.build and requires compiled .class file
Is there any reason why “Vicki” is the voice of choice here? https://github.com/boot-clj/boot/blob/master/boot/worker/src/boot/notify.clj#L39
has anyone who is managing boot-cljs-repl
gotten a chance to look over this PR? https://github.com/adzerk-oss/boot-cljs-repl/pull/43 I had another co-worker who got bit by swallowed up console printing. @juhoteperi
@adamfrey: Seems like a good default
^ tried to properly set Cljs repl output-dir but had didn't manage to get that working
@juhoteperi: did you look into if this is caused by weasel or other tooling down the line maybe?
@martinklepsch: Weasel passes the options directly to cljs.repl
I did look there are I don't see why it doesn't work