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.12-SNAPSHOT Cache busting and more compiler option updates
1+ ## 0.5.13 Small updates
2+
3+ * remove the use of a deprecated Google Closure library function
4+ goog.net.jsloader.load
5+ * add CLJS compile option ` :process-shim ` to validation code
6+
7+ ## 0.5.12 Cache busting and more compiler option updates
28
39There have been constant problems when reloading an application into
410Chrome where even a hard reload insists on pulling items from the
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ Then include `lein-figwheel` in the `:plugins`
189189section of your project.clj.
190190
191191``` clojure
192- [lein-figwheel " 0.5.12 " ]
192+ [lein-figwheel " 0.5.13 " ]
193193```
194194
195195#### Configure your builds
@@ -572,7 +572,7 @@ Figwheel has a Clojure
572572that makes it easy to start, stop and control Figwheel from Clojure.
573573
574574In order for the following examples to work, you will need to have
575- ` [figwheel-sidecar "0.5.12 "] ` in your dependencies.
575+ ` [figwheel-sidecar "0.5.13 "] ` in your dependencies.
576576
577577To start Figwheel from a script, you will need to require the
578578` figwheel-sidecar.repl-api ` and provide your build configuration to
Original file line number Diff line number Diff line change 55 :url " http://www.eclipse.org/legal/epl-v10.html" }
66 :dependencies [
77 [org.clojure/clojure " 1.9.0-alpha15" ]
8+ [org.clojure/clojurescript " 1.9.908" ]
9+
10+ ; ; trying to keep things compatible back to these versions at least
811 #_[org.clojure/clojure " 1.8.0" ]
9- [org.clojure/clojurescript " 1.9.671 " ]
12+ #_ [org.clojure/clojurescript " 1.8.51 " ]
1013 [org.clojure/core.async " 0.3.442"
1114 :exclusions [org.clojure/tools.reader]]
1215 [sablono " 0.3.5" ]
1922
2023 :plugins [[lein-ring " 0.8.13" :exclusions [org.clojure/clojure]]
2124 #_[lein-cljsbuild " 1.1.2" ]
22- [lein-figwheel " 0.5.13-SNAPSHOT " ]
25+ [lein-figwheel " 0.5.13" ]
2326 #_[lein-npm " 0.4.0" ]]
2427
2528 :node-dependencies [[source-map-support " 0.2.8" ]
Original file line number Diff line number Diff line change 1- (defproject lein-figwheel " 0.5.13-SNAPSHOT "
1+ (defproject lein-figwheel " 0.5.13"
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.13-SNAPSHOT " )
13+ (def _figwheel-version_ " 0.5.13" )
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.13-SNAPSHOT "
1+ (defproject figwheel-sidecar " 0.5.13"
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"
2323 [org.clojure/tools.reader
2424 org.clojure/clojure]]
2525 [clj-stacktrace " 0.2.8" ]
26- [figwheel " 0.5.13-SNAPSHOT "
26+ [figwheel " 0.5.13"
2727 :exclusions [org.clojure/tools.reader]]
2828 [hawk " 0.2.11" :exclusions [org.clojure/clojure]]
2929
Original file line number Diff line number Diff line change 1818
1919#_(remove-ns 'figwheel-sidecar.config)
2020
21- (def _figwheel-version_ " 0.5.13-SNAPSHOT " )
21+ (def _figwheel-version_ " 0.5.13" )
2222
2323; ; file stamping pattern
2424
Original file line number Diff line number Diff line change 1- (defproject figwheel " 0.5.13-SNAPSHOT "
1+ (defproject figwheel " 0.5.13"
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.13-SNAPSHOT " )
19+ (def _figwheel-version_ " 0.5.13" )
2020
2121(def js-stringify
2222 (if (and (exists? js/JSON) (some? js/JSON.stringify))
You can’t perform that action at this time.
0 commit comments