Fork me on GitHub
#boot
<
2016-10-26
>
onetom01:10:11

@hlship yes, we are using the cursive repl you can try the whole thing in the https://github.com/onetom/hoplon-layouts example project if it doesn't work for you, im happy to do a screen sharing and debug it on your machine

onetom05:10:10

@hlship i just read back a bit more. from your stacktrace i suspect you are trying to start a Local REPL we use the Clojure REPL / Remote option with the Use Leningen REPL port option and just start the boot repl in regular terminal window. (you can technically start it from the builtin IntelliJ terminal, but if u quit IntelliJ, it won't terminate the processes u started from its terminals and the ports you were listening on from boot won't be released...)

onetom05:10:49

(to be more precise we run boot dev which has a (repl :server true) on the backend and a (cljs-devtools) on the frontend)

martinklepsch08:10:59

@arohner that should not be the case I think. How are you observing that it's not picked up?

grounded_sage14:10:32

Is anyone using boot-garden. I'm just curious how one goes about doing media queries. I'm using a Tenzing template which follows the way it is shown in the example on the boot-garden readme.

(defstyles base
  (let [body (rule :body)]
    (body
     {:font-family "Helvetica Neue"
      :font-size   "16px"
      :line-height 1.5})))

grounded_sage14:10:09

Just realised that the most recent person is the one I need to talk to haha. I've spent hours on this thing and I probably could have just spoken to you. CC @martinklepsch

martinklepsch14:10:27

@grounded_sage hehe, I wish I could help, not using Garden much these days

upgradingdave17:10:04

Hi all, pretty sure I’m overlooking something simple - if I have :resource-paths #{"src/cljs" "resources/public"} and I have a cljs.edn file like this: src/cljs/somedir/app.cljs.edn, shouldn’t the cljs task create somedir/app.js? It seems to be always creating app.js in the root of the target directory no matter where I put app.cljs.edn? Any suggestions on what to check?

grounded_sage19:10:37

@martinklepsch after sleeping on it ... it appears to be working as it should. How strange xD

mikebelanger20:10:25

@upgradingdave what does your :dir option in your target invokation look like?

upgradingdave20:10:49

I’m just using (target) right now

upgradingdave20:10:54

I have multiple *.cljs.edn files and was hoping that I could control which relative dirs each *.js files get created inside by the relative directory of the *.cljs.edn files?

mikebelanger20:10:12

@upgradingdave hmm sorry, I don't know. I've never tried targeting specific .js files, other than to put the entire output in a directory other than the default target directory.

mikebelanger20:10:36

...wait this problem sounds familiar, like I read it somewhere...

mikebelanger20:10:05

@upgradingdave in the above example, I believe you'd like your "src/cljs" in :source-paths instead?

upgradingdave20:10:19

Thanks for your help, the boot-cljs wiki has a section "multiple builds" and seems like it might be possible

upgradingdave20:10:52

I tried source - paths too but no luck

upgradingdave20:10:53

I gotta run thanks again, ill keep at it later!

mikebelanger20:10:55

@upgradingdave no probs -- sorry I couldn't be of more help! However, I found what I stumbled over -- basically it says that the location of each edn in resource-paths and source-paths respectively need to match

mikebelanger20:10:38

@upgradingdave the applicable part is in *Step 3*

hiredman21:10:37

is there something like lein deps :tree for boot?

mitchelkuijpers22:10:25

@hiredman look at the boot show task

hiredman22:10:02

yeah, I found the boot for lein users page

mitchelkuijpers22:10:09

I am currently on my phone and I don't know the arg from the top of my head

hiredman22:10:51

show doesn't exactly work, because of course this(all?) build is a special snowflake, but it can be fiddled around

mitchelkuijpers22:10:26

Thats always the case, hehe