This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-27
Channels
- # bangalore-clj (1)
- # beginners (27)
- # boot (16)
- # cider (14)
- # cljs-dev (94)
- # cljsrn (8)
- # clojure (229)
- # clojure-dev (5)
- # clojure-dusseldorf (6)
- # clojure-italy (8)
- # clojure-norway (8)
- # clojure-russia (22)
- # clojure-sanfrancisco (2)
- # clojure-spec (48)
- # clojure-uk (44)
- # clojurescript (47)
- # core-async (87)
- # cursive (43)
- # datascript (22)
- # datomic (20)
- # defnpodcast (5)
- # emacs (6)
- # hoplon (4)
- # jobs-rus (4)
- # keechma (2)
- # klipse (8)
- # leiningen (2)
- # luminus (2)
- # lumo (14)
- # om (38)
- # onyx (4)
- # overtone (3)
- # pedestal (41)
- # planck (72)
- # powderkeg (42)
- # proton (46)
- # protorepl (9)
- # reagent (9)
- # ring (47)
- # ring-swagger (5)
- # rum (7)
- # sql (22)
- # unrepl (1)
- # untangled (24)
- # vim (19)
- # yada (5)
Hi, I can't sift folder from my target (`boot production cljs sift target`) Sift options is:
{:include #{#"^\..*"
#"\.zip$"
#"\.java$"
#"\.clj$"
#"\.cljs$"
#”main\.out$"
#"js\.map$"
#"css\.map$"
#"cljs\.edn$"
#”project\.clj$"}
:invert true}
Basically, sift works on all regexes except main.out directory. How to remove directory using sift?i get this error using boot-cljs
and boot-reload
:
Load failed: Jsloader error (code #0): Error while loading script /public/js/main.out/adzerk/boot_cljs_repl.js?zx=brsh8m2arw4l
anyone have an idea why?
my build.boot
is pretty generic, and i’m not doing anything special at all
and my server http-kit
serves target like this:
(def app
(->
(cj/routes base-routes
(cjr/resources "/js" {:root "target/public"})
(cjr/resources "/" {:root "public"}))
(with-headers {"Cache-Control" "no-cache"
"Expires" "-1"
"X-Frame-Options" "SAMEORIGIN" })))
ah nevermind 😄 just bumped boot-cljs
and alls working fine 🙂