This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-11-26
Channels
- # bangalore-clj (3)
- # beginners (47)
- # boot (20)
- # cljs-dev (7)
- # cljsjs (16)
- # cljsrn (3)
- # clojure (46)
- # clojure-art (4)
- # clojure-berlin (1)
- # clojure-brasil (2)
- # clojure-greece (1)
- # clojure-india (5)
- # clojure-russia (1)
- # clojure-spec (34)
- # clojure-taiwan (2)
- # clojure-uk (8)
- # clojurescript (69)
- # cursive (9)
- # datascript (26)
- # datomic (1)
- # emacs (2)
- # events (1)
- # hoplon (8)
- # leiningen (3)
- # off-topic (4)
- # proto-repl (4)
- # re-frame (3)
- # reagent (1)
- # rethinkdb (8)
- # rum (3)
- # vim (83)
@onetom the boot cat is not named afaik
Is there a way to exit a boot process with an error but without printing a stack trace?
I did implement implement the stack trace part of the issue here: https://github.com/boot-clj/boot/compare/feature/exception-handling
hey guys, anyone knows whether getting cloverage running in combination with boot is possible ? it seems to only have a lein plugin
@lmergen There is a PR at Cloverage repo: https://github.com/cloverage/cloverage/pull/115/files
looks like the original committer of that PR is busy with other things, guess i should ping him
@lsenta here are the official docs: https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html
the most significant thing to note is probably that dependencies with :scope "test"
are not registered as transitive deps. E.g. A depends on B with scope test. C depends on A. When C downloads all of A dependencies B is not regarded as necessary dependency
@martinklepsch How do you check / change which scope you’re in?
Say I have a (deftask dev [] (comp live cljs server))
, can I make sure it loads the devtools deps or any other :scope “test”
resources?
when you load them yourself using set-env!
they're loaded no matter which scope they have
Got it, that’s something you care about when you have to finetune jars / class files / dependencies
Thanks a lot for making this clear @martinklepsch 🙂
scopes are mostly related to how dependencies are treated when they show up during dependency resoution
you're welcome @lsenta