Skip to content

Commit

Permalink
updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Hauman committed Nov 2, 2015
1 parent 4fc79ad commit 659e468
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
* Figwheel is has undergone a large refactor and is now functioning better than ever
* Figwheel is now internally composed of components and has been
organized according to concerns - this is not quite finished yet so the internal api may be be unstable
* this exposes the ability to compose systems as you see fit and offering the ability to
* this exposes the ability to compose component systems as you see fit and offering the ability to
send messages from your own components to the figwheel client
* moved to a FSEvent file watching strategy using the hawk library, this
should ease CPU usage quite a bit
* you can override the build function with the new `:cljs-build-fn` figwheel option
* you can opt out of `.clj` or `.cljc` macro reloading
* the build function follows a middleware strategy allowing you to splice in build time functionality
- this can easiliy allow to to skip all magic figwheel injections and just run straight `cljs.build.api/build`
- this can easiliy allow you to skip all magic figwheel injections and just run straight `cljs.build.api/build`
* hot loading javascript has been solidified even further
* figwheel repl controls are much more sensible now, they alter the component system map
* figwheel repl controls are much more sensible now, they alter a component system map
* fixed various build config "parsing" problems
* support for an external configuration file "figwheel.edn"
* figwheel no longer overides `:recompile-dependents` default value bringing it inline with cljs compiler defaults
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ side configuration parameters:
;; Clojure Macro reloading
;; disable clj file reloading
; :reload-clj-files false
; or specify which suffixes will cause the reloading
;; or specify which suffixes will cause the reloading
; :reload-clj-files {:clj true :cljc false}

;; To be able to open files in your editor from the heads up display
Expand Down
6 changes: 3 additions & 3 deletions sidecar/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
:dir "sidecar"}
:dependencies
[[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.122"
[org.clojure/clojurescript "1.7.145"
:exclusions [org.apache.ant/ant]]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/core.async "0.2.371"]
[com.stuartsierra/component "0.3.0"]
[http-kit "2.1.18"]
[ring-cors "0.1.7"]
[compojure "1.3.4"]
[compojure "1.4.0"]
[clj-stacktrace "0.2.8"]
[digest "1.4.4"]
[figwheel "0.5.0-SNAPSHOT"]
Expand Down
4 changes: 2 additions & 2 deletions support/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
:dir "support"}
:dependencies
[[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.122"
[org.clojure/clojurescript "1.7.145"
:exclusions [org.apache.ant/ant]]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]])
[org.clojure/core.async "0.2.371"]])

0 comments on commit 659e468

Please sign in to comment.