Fork me on GitHub
#boot
<
2016-03-22
>
vikeri08:03:50

I get ConnectException Connection refused when trying to connect to boot-cljs-repl in a React Native project. Any ideas?

pastafari11:03:48

I’m getting a strange error Could not locate reagent/core__init.class or reagent/core.clj on classpath.

pastafari11:03:32

I have reagent in my dependencies, and all i’ve done is (:require [reagent.core]) in my cljs file

pastafari11:03:22

In fact, I can’t use any dependencies from cljs, totally stumped!

martinklepsch11:03:16

@pastafari: have you added the reagent dependency to your build.boot?

pastafari11:03:14

@martinklepsch: pretty standard setup here. I must be doing something wrong, but can’t put my finger on it 😞

martinklepsch11:03:48

@pastafari: maybe you can put the project on github? happy to take a look

pastafari11:03:17

@martinklepsch: fwiw, i got a browser repl working, and was able to interact with it.

pastafari11:03:41

@martinklepsch: the dependency problem only started when I required external libs from my cljs

martinklepsch11:03:16

@pastafari: did you restart your boot process?

martinklepsch11:03:38

editing build.boot will not make a running process pick up those new deps

pastafari11:03:47

@martinklepsch: yes i did. Putting it up on github in just a minute.

martinklepsch12:03:54

@pastafari: so where's the reagent.core require? or did you replace that with the domina one?

pastafari12:03:16

@martinklepsch: yes i replaced it with domina, same issue

pastafari12:03:53

@martinklepsch: just psuhed the reagent require as well.

martinklepsch12:03:16

@pastafari: domina.core does not exist, after renaming that to just domina it worked for me (even the reagent require)

pastafari12:03:18

@martinklepsch: dayumn! Thanks so much! I owe you a beer or 5.

yogidevbear12:03:39

Hi everyone. I'm trying to create a new project using boot new ... and I'm getting the following error: clojure.lang.ExceptionInfo: java.lang.IllegalArgumentException: No such task (new). Any suggestions?

majenful14:03:34

I ask there too: I try to follow modern-cljs tutorial (boot version), but when I type « boot cljs », the console prints the compilation but I don’t have any new file. Any clue ?

alandipert14:03:28

@majenful: try boot cljs target it sounds like you may have boot configured not to write to the target/ directory by default, at the end of compilation

tcrawley15:03:47

@alandipert: @micha: you probably hear this all the time, but I've never said it: I really like boot :)

tcrawley15:03:51

thanks for all your hard work!

micha16:03:25

@tcrawley: thanks! simple_smile and thanks for making the awesome shimdandy that makes it all work

tcrawley16:03:53

my pleasure! I'm happy that others find it useful

seancorfield16:03:41

Boot rocks 🚀 🎉

micha16:03:06

thanks @seancorfield and everyone 😄

micha16:03:50

a lot of great PRs merging for 2.6.0

micha16:03:22

also real tests!

seancorfield16:03:06

We couldn’t do what we’re in the middle of doing if we were still using Leiningen.

nberger16:03:12

> also real tests! this is really great news!!

micha16:03:38

@richiardiandrea did a huge amount of work to make it possible

richiardiandrea16:03:29

I am still not 100% satisfied with those, for instance I want to add the possibility to select the number of threads

richiardiandrea16:03:38

and they are very verbose

richiardiandrea16:03:01

but I have been pretty busy 😓

nberger16:03:17

oh, not only we have tests, but they even run in parallel...

micha16:03:48

i think they're great, we can add extra polish whenever

nberger16:03:07

yep, totally agree

richiardiandrea16:03:04

yeah, still, hopefully I will have some time later this week

richiardiandrea16:03:36

btw a thing I wanted to share here, because people don't see commits on the master branch

richiardiandrea16:03:10

I heard that some say that is not very active 😄

micha16:03:26

that's not necessarily a bad thing for a build tool

richiardiandrea16:03:32

I with they could come here in this channel

alandipert16:03:35

yeah, in fact i find relief in it

micha16:03:44

i'd prefer to be associated with stability than activity

alandipert16:03:31

i made and started to groom a 2.6.0 mileston on github btw https://github.com/boot-clj/boot/milestones/2.6.0

richiardiandrea16:03:34

just figured I might share

alandipert16:03:53

i brought it up earlier but i encourage anyone to give those a look and provide feedback if they have any, regardless of whether they created ticket

micha16:03:21

maybe there is some way to make activity in boot tasks more prominent

micha16:03:42

like somehow bring attention to all the stuff that's going on with all the awesome tasks that aren't in boot itself

micha16:03:54

since that's where you want new features really

alandipert16:03:26

that would be cool, maybe some SPA backed by the community tasks page and GH api?

richiardiandrea16:03:45

I did not notice the milestone

richiardiandrea16:03:06

yes the milestone gives a sense of activity for sure

richiardiandrea16:03:44

also PRs, I actually found checking the master branch only a bit "reductive", you cannot really grasp how the project is doing

micha16:03:24

separating the next release from the master branch makes it easier to release bugfixes

micha16:03:50

like if there is an important bugfix that needs to go out before the next milestone

micha16:03:04

we can do it on master now and merge with the 2.6.0-SNAPSHOT branch

richiardiandrea16:03:39

yeah I do the same in replumb, and other projects, master and devel, classic git flow...it makes sense

martinklepsch16:03:46

@alandipert: @richiardiandrea was thinking the other day it might be cool to extend the boot site with a community tasks page and make that a bit like http://www.clojure-toolbox.com/

richiardiandrea16:03:21

yeah that looks cool indeed

richiardiandrea16:03:45

also, it is great to collect them in a single page and show their switches

alandipert17:03:42

@martinklepsch @richiardiandrea that sounds like a great idea re: toolbox-style tasks page on boot site. would take PR, can also ask work for some design help

danielsz23:03:18

I'm stumped. I've uploaded a SNAPSHOT of system, and suddenly my existing projects that reference that snapshot produce the following error org.sonatype.aether.transfer.ArtifactNotFoundException: Could not find artifact org.danielsz:system:jar:0.3.0-20160322.233127-13 in clojars ()

danielsz23:03:38

Someone on the Clojure channel told me they can retrieve the snapshot, no problem.

danielsz23:03:55

How do I troubleshoot this?