File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 0.5.4-7 fix : open-command
2+
3+ * PR #449 Arguments to open-file-command must be strings, not numeric.
4+
15## 0.5.4-6 update sidecar system apis to handle result of fetch-config
26
37* PR #447 change the validator to allow ES6 and : no-transpile
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ Then include `lein-figwheel` in the `:plugins`
172172section of your project.clj.
173173
174174``` clojure
175- [lein-figwheel " 0.5.4-5 " ]
175+ [lein-figwheel " 0.5.4-7 " ]
176176```
177177
178178#### Configure your builds
@@ -536,7 +536,7 @@ Figwheel has a Clojure
536536that makes it easy to start, stop and control Figwheel from Clojure.
537537
538538In order for the following examples to work, you will need to have
539- ` [figwheel-sidecar "0.5.4-5 "] ` in your dependencies.
539+ ` [figwheel-sidecar "0.5.4-7 "] ` in your dependencies.
540540
541541To start Figwheel from a script, you will need to require the
542542` figwheel-sidecar.repl-api ` and provide your build configuration to
Original file line number Diff line number Diff line change 1717
1818 :plugins [[lein-ring " 0.8.13" :exclusions [org.clojure/clojure]]
1919 #_[lein-cljsbuild " 1.1.2" ]
20- [lein-figwheel " 0.5.4-6 " ]
20+ [lein-figwheel " 0.5.4-7 " ]
2121 #_[lein-npm " 0.4.0" ]]
2222
2323 :node-dependencies [[source-map-support " 0.2.8" ]
9999 }}}}
100100
101101 :profiles { :dev { :dependencies [[com.cemerick/piggieback " 0.2.1" ]
102- [figwheel-sidecar " 0.5.4-6 " ]
102+ [figwheel-sidecar " 0.5.4-7 " ]
103103 [org.clojure/tools.namespace " 0.2.11" ]
104104 [org.clojure/tools.nrepl " 0.2.12" ]
105105 [leiningen-core " 2.6.1" ]]
Original file line number Diff line number Diff line change 1- (defproject lein-figwheel " 0.5.4-6 "
1+ (defproject lein-figwheel " 0.5.4-7 "
22 :description " ClojureScript Autobuilder/Server which pushes changed files to the browser. This is the lein plugin."
33 :url " https://github.com/bhauman/lein-figwheel"
44 :license {:name " Eclipse Public License - v 1.0"
Original file line number Diff line number Diff line change 1010 [leiningen.figwheel.fuzzy :as fuz]
1111 [simple-lein-profile-merge.core :as lm]))
1212
13- (def _figwheel-version_ " 0.5.4-6 " )
13+ (def _figwheel-version_ " 0.5.4-7 " )
1414
1515(defn make-subproject [project paths-to-add]
1616 (with-meta
Original file line number Diff line number Diff line change 1- (defproject figwheel-sidecar " 0.5.4-6 "
1+ (defproject figwheel-sidecar " 0.5.4-7 "
22 :description " ClojureScript Autobuilder/Server which pushes changed files to the browser."
33 :url " https://github.com/bhauman/lein-figwheel"
44 :license {:name " Eclipse Public License - v 1.0"
2121 [org.clojure/tools.reader
2222 org.clojure/clojure]]
2323 [clj-stacktrace " 0.2.8" ]
24- [figwheel " 0.5.4-6 "
24+ [figwheel " 0.5.4-7 "
2525 :exclusions [org.clojure/tools.reader]]
2626 [hawk " 0.2.10" :exclusions [org.clojure/clojure]]
2727
Original file line number Diff line number Diff line change 1313 [figwheel-sidecar.config-check.ansi :refer [color-text with-color-when]]
1414 [figwheel-sidecar.utils :as utils]))
1515
16- (def _figwheel-version_ " 0.5.4-6 " )
16+ (def _figwheel-version_ " 0.5.4-7 " )
1717
1818; ; trying to keep this whole file clojure 1.5.1 compatible because
1919; ; it is required by the leiningen process in the plugin
Original file line number Diff line number Diff line change 1- (defproject figwheel " 0.5.4-6 "
1+ (defproject figwheel " 0.5.4-7 "
22 :description " This project contains the client side code for Figwheel."
33 :url " https://github.com/bhauman/lein-figwheel"
44 :license {:name " Eclipse Public License - v 1.0"
Original file line number Diff line number Diff line change 1616 [cljs.core.async.macros :refer [go go-loop]])
1717 (:import [goog]))
1818
19- (def _figwheel-version_ " 0.5.4-6 " )
19+ (def _figwheel-version_ " 0.5.4-7 " )
2020
2121; ; exception formatting
2222
You can’t perform that action at this time.
0 commit comments