Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 02ea8ad

Browse files
author
Bruce Hauman
committedNov 24, 2015
getting ready for 0.5.0-2 release
1 parent f135272 commit 02ea8ad

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed
 

‎CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.5.0-2
2+
3+
* bumping http-kit to 0.2.19 get's rid of nasty exit exception
4+
* fix REPL helpers check for figwheel's running status
5+
* fixed REPL problem where pprint would produce extra output
6+
17
## 0.5.0-1
28

39
* added back `figwheel-sidecar.repl/get-project-cljs-builds` and deprecated

‎example/dev/user.clj

-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
(ns user
22
(:require
3-
[figwheel-sidecar.config :as config]
4-
[figwheel-sidecar.system :as fs]
53
[figwheel-sidecar.repl-api :as f]
6-
[com.stuartsierra.component :as component]
74
[clojure.tools.namespace.repl :refer (refresh refresh-all)]))
85

96
(def sys f/*repl-api-system*)

‎example/project.clj

+7-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:license {:name "Eclipse Public License"
55
:url "http://www.eclipse.org/legal/epl-v10.html"}
66
:dependencies [
7-
[org.clojure/clojure "1.7.0"]
7+
[org.clojure/clojure "1.8.0-RC2"]
88
[org.clojure/clojurescript "1.7.170"]
99
[org.clojure/core.async "0.2.374"]
1010
[sablono "0.3.5"]
@@ -98,12 +98,13 @@
9898
}}]}
9999

100100
:profiles { :dev { :dependencies [[com.cemerick/piggieback "0.2.1"]
101-
[figwheel-sidecar "0.5.0-1"]
101+
[figwheel-sidecar "0.5.0-2"]
102102
[org.clojure/tools.namespace "0.2.11"]
103-
#_[org.clojure/tools.nrepl "0.2.10"]]
104-
:source-paths ["src" "../sidecar/src" "dev"]
105-
:plugins [[refactor-nrepl "1.2.0-SNAPSHOT"]
106-
[cider/cider-nrepl "0.10.0-SNAPSHOT"]]}}
103+
[org.clojure/tools.nrepl "0.2.12"]]
104+
:source-paths ["src" "dev"]}
105+
:repl { :plugins [ [cider/cider-nrepl "0.10.0-SNAPSHOT"]]}}
106+
107+
:repl-options {:nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}
107108

108109
:figwheel {
109110
:http-server-root "public" ;; default and assumes "resources"

0 commit comments

Comments
 (0)
Please sign in to comment.