File tree 4 files changed +10
-8
lines changed
4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.2.1 React 14
2
+
3
+ * now depends on React 14
4
+ * fixing the ` :watch-atom false ` option
5
+ * added the ` :actual ` output for failing tests
6
+ * allowing the config of default card options
7
+
1
8
## 0.2.0-8 Improved Reagent support
2
9
3
10
* ** added ` devcards.core/devcard-rg ` ** as a shortcut to defining
Original file line number Diff line number Diff line change @@ -156,11 +156,10 @@ interface responds.
156
156
First make sure you include the following ` :dependencies ` in your ` project.clj ` file.
157
157
158
158
``` clojure
159
- [org.clojure/clojurescript " 1.7.122 " ]
160
- [devcards " 0.2.0-8 " ]
159
+ [org.clojure/clojurescript " 1.7.170 " ]
160
+ [devcards " 0.2.1 " ]
161
161
```
162
162
163
-
164
163
You will need an HTML file to host the devcards interface. It makes
165
164
sense to have a separate file to host devcards. I would
166
165
create the following ` resources/public/cards.html ` file (this is the same
Original file line number Diff line number Diff line change @@ -195,15 +195,11 @@ The following example shows this usage:
195
195
```
196
196
" )
197
197
198
-
199
198
(defcard some-tests
200
199
(dc/tests
201
200
" ## this should show up"
202
201
(is (= 1 1 ))
203
202
(is (= 1 2 ))))
204
203
205
-
206
-
207
-
208
204
#_(js/setTimeout (fn [] (cljs.test/run-tests 'devdemos.testing)) 500 )
209
205
Original file line number Diff line number Diff line change 1
- (defproject devcards " 0.2.1-SNAPSHOT "
1
+ (defproject devcards " 0.2.1"
2
2
:description " Devcards is a ClojureScript library that provides a lab space to you develop your UI components independently and interactively."
3
3
:url " http://github.com/bhauman/devcards"
4
4
:license {:name " Eclipse Public License"
You can’t perform that action at this time.
0 commit comments