Fork me on GitHub
#figwheel-main
<
2018-07-16
>
alvina08:07:23

does anyone have configuration guide for re-frame-10x + figwheel.man + deps.edn?

peeb09:07:10

Forgive me if this has been answered elsewhere but is there a wiki or doc somewhere on how to connect figwheel.main to an editor piggieback nrepl?

alvina10:07:37

i also have same question

alvina10:07:01

my current workflow is

alvina10:07:31

i start a repl then

alvina10:07:59

(cider/init ["cider.nrepl/cider-middleware"])

alvina10:07:25

then i start figwheel

alvina10:07:01

form emacs

alvina10:07:23

(require '[figwheel.main :as figwheel])

alvina10:07:41

(figwheel/start "dev")

bhauman12:07:17

@peeb I'm hoping to get a guide on this soon

👍 4
peeb14:07:58

Thanks for all the amazing work, @bhauman

jmayaalv14:07:26

how is npm-deps specified ? all my attempts have failed 😕

mfikes15:07:01

@jmayaalv You would put it in compiler options. figwheel-main lets you use -co or you could put it in a build edn file (the file read with -b)

bhauman15:07:47

and the reccomended way is in the build file 🙂

jmayaalv15:07:59

Thank you! let me try that!

jmayaalv20:07:13

works ! and i found now the docs in the tutorial! Thank you!