This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-11-26
Channels
- # admin-announcements (70)
- # aws (1)
- # beginners (17)
- # boot (37)
- # business (1)
- # cider (2)
- # cljs-dev (56)
- # cljsrn (6)
- # clojure (151)
- # clojure-germany (1)
- # clojure-nl (5)
- # clojure-poland (5)
- # clojure-russia (34)
- # clojure-taiwan (1)
- # clojurescript (289)
- # clojurex (2)
- # cursive (16)
- # datavis (3)
- # datomic (12)
- # editors (10)
- # emacs (3)
- # hoplon (17)
- # ldnclj (5)
- # lein-figwheel (12)
- # leiningen (1)
- # liberator (1)
- # off-topic (23)
- # om (116)
- # onyx (39)
- # parinfer (44)
- # portland-or (1)
- # reagent (34)
- # yada (6)
with sidecar, how do i choose the build id i want to compile? right now i have https://gist.github.com/sander/ec3bf9bb59f48e9f0c46 but the "browser"
build doesn't produce any js files on (start)
or (browser-repl)
workaround right now is to change the order of builds in figwheel.edn
to put the one i want first
Does anyone have the experience that the new refactored figwheel 0.5.* is slower than before?
we just update to [org.clojure/clojurescript "1.7.170"], lein-cljsbuild to 1.1.1 and newest lein-figwheel, but it takes around 20s to compile and reload the little change in my colleague's PC...
` :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.145"] [org.clojure/core.async "0.2.371"] [sablono "0.4.0"] [devcards "0.2.1"] [hiccups "0.3.0"] [org.omcljs/om "0.9.0"] [differ "0.2.1"] [org.clojure/core.match "0.3.0-alpha4"] [com.keminglabs/c2 "0.2.4-SNAPSHOT"] [com.andrewmcveigh/cljs-time "0.3.14"]] :plugins [[lein-cljsbuild "1.1.1"] [lein-figwheel "0.4.1"] [lein-shell "0.4.0"] `
update org.clojure/clojurescript to 1.7.170 and lein-figwheel to 0.5.0-1, it becomes so slow
@bhauman: I found that there are two build id in cljsbuild in project.clj, one contains all the dev src files, the other contains have both dev and test files, and it turns out the test cljsbuild is slower 2-3 times, takes around 5-6 seconds. It seems the more files, the slower compiling...
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.clojure/core.async "0.2.371"]
[sablono "0.4.0"]
[hiccups "0.3.0"]
[org.omcljs/om "0.9.0"]
[differ "0.2.1"]
[org.clojure/core.match "0.3.0-alpha4"]
[com.keminglabs/c2 "0.2.4-SNAPSHOT"]
[com.andrewmcveigh/cljs-time "0.3.14"]]
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-1"]
[lein-shell "0.4.0"]
[lein-sassy "1.0.7"]]