This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-06-03
Channels
- # beginners (112)
- # boot (13)
- # cider (17)
- # cljsjs (2)
- # cljsrn (8)
- # clojure (57)
- # clojure-spec (2)
- # clojure-uk (5)
- # clojurescript (51)
- # cursive (4)
- # data-science (15)
- # datomic (1)
- # duct (17)
- # garden (4)
- # lein-figwheel (49)
- # midje (1)
- # nyc (1)
- # off-topic (8)
- # pedestal (1)
- # portkey (20)
- # re-frame (4)
- # reagent (27)
- # ring (1)
- # shadow-cljs (24)
- # spacemacs (7)
- # specter (3)
- # sql (5)
- # yada (5)
@bhauman Thanks for making the figwheel-main
i was trying to bolt figwheel
on cljs.main
but then i saw on clojurescript
channel about figwheel-main
and it is awesome. Now i am gonna send just one link to my resume to the prospective employer.
@bhauman My current barebones figwheel-main
based resume in progress is like this : clj -Sdeps '{:deps {github-metacritical/cljscv {:git/url "
the only problem is this creates a target directory and even warns that deps.edn does not have a target
directory. Is there a way it would not create a target
directory or may be create it in /tmp
or may be cleanup when we press C-c
@metacritical yeah I've been thinking about this, but there's not going to be a solution anytime soon
@metacritical oh I figured it out, figwheel.main -co '{:main resume.core}' -r
creates a temp-directory without warnings
@bhauman, thanks for the reply. It does not give warnings if target directory exists, but on a fresh invocation it does warn. Try deleting the existing target directory, it would complain and then create a target
directory. Can there be a flag based option say -t
which guides where to create the target directory?
@metacritical are you talking about the temp target dir?
@metacritical are you using figwheel.main -co '{:main resume.core}' -r
explicitly without the -c
flag?
Let me check.
It is the latest snapshot, i used the same command as above clj -Sdeps '{:deps {github-metacritical/cljscv {:git/url "
but target
is the default.
It warns anyway. ther is no way to use temp is there?
@metacritical get rid of the -c resume.core
and it works
I didnt see.
Sorry
@bhauman There is only one problem it does not start the resume.core
ns which i want to start as soon as it loads.
So a -c resume.core
is a necessity.
@bhauman yes if i dont use the -c flag, it loads the default figwheel.main
1 sec
I understand.
will clean the .mvn and check again.