mirror of https://github.com/status-im/reagent.git
Version 0.2.0
This commit is contained in:
parent
8110b1aca8
commit
f3e4c7f6b0
4
Makefile
4
Makefile
|
@ -7,7 +7,7 @@ PROF = dev
|
||||||
CLJSBUILD = client
|
CLJSBUILD = client
|
||||||
CLJSDIRS = src test
|
CLJSDIRS = src test
|
||||||
|
|
||||||
VERSION = 0.2.0-SNAPSHOT
|
VERSION = 0.2.0
|
||||||
|
|
||||||
all: buildrun
|
all: buildrun
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ buildrun: setup
|
||||||
lein -o with-profile $(PROF) cljsbuild auto $(CLJSBUILD)
|
lein -o with-profile $(PROF) cljsbuild auto $(CLJSBUILD)
|
||||||
|
|
||||||
runtest:
|
runtest:
|
||||||
$(MAKE) PROF=test,$(PROF)
|
$(MAKE) run PROF=test,$(PROF)
|
||||||
|
|
||||||
runsite: setup
|
runsite: setup
|
||||||
(sleep 3 && open "http://127.0.0.1:$(PORT)") &
|
(sleep 3 && open "http://127.0.0.1:$(PORT)") &
|
||||||
|
|
|
@ -9,7 +9,7 @@ React components using (almost) nothing but plain ClojureScript functions.
|
||||||
|
|
||||||
To use Reagent you add this to your dependencies in `project.clj`:
|
To use Reagent you add this to your dependencies in `project.clj`:
|
||||||
|
|
||||||
[reagent "0.1.0"]
|
[reagent "0.2.0"]
|
||||||
|
|
||||||
You also need to include react.js itself. One way to do this is to add
|
You also need to include react.js itself. One way to do this is to add
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
|
|
||||||
|
|
||||||
(defproject simple-reagent "0.2.0-SNAPSHOT"
|
(defproject simple-reagent "0.2.0"
|
||||||
:dependencies [[org.clojure/clojure "1.5.1"]
|
:dependencies [[org.clojure/clojure "1.5.1"]
|
||||||
[org.clojure/clojurescript "0.0-2138"]
|
[org.clojure/clojurescript "0.0-2138"]
|
||||||
[reagent "0.2.0-SNAPSHOT"]]
|
[reagent "0.2.0"]]
|
||||||
:plugins [[lein-cljsbuild "1.0.1"]]
|
:plugins [[lein-cljsbuild "1.0.1"]]
|
||||||
:hooks [leiningen.cljsbuild]
|
:hooks [leiningen.cljsbuild]
|
||||||
:profiles {:prod {:cljsbuild
|
:profiles {:prod {:cljsbuild
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
|
|
||||||
|
|
||||||
(defproject todomvc-reagent "0.2.0-SNAPSHOT"
|
(defproject todomvc-reagent "0.2.0"
|
||||||
:dependencies [[org.clojure/clojure "1.5.1"]
|
:dependencies [[org.clojure/clojure "1.5.1"]
|
||||||
[org.clojure/clojurescript "0.0-2138"]
|
[org.clojure/clojurescript "0.0-2138"]
|
||||||
[reagent "0.2.0-SNAPSHOT"]]
|
[reagent "0.2.0"]]
|
||||||
:plugins [[lein-cljsbuild "1.0.1"]]
|
:plugins [[lein-cljsbuild "1.0.1"]]
|
||||||
:hooks [leiningen.cljsbuild]
|
:hooks [leiningen.cljsbuild]
|
||||||
:profiles {:prod {:cljsbuild
|
:profiles {:prod {:cljsbuild
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
(defproject reagent "0.2.0-SNAPSHOT"
|
(defproject reagent "0.2.0"
|
||||||
:url "http://github.com/holmsand/reagent"
|
:url "http://github.com/holmsand/reagent"
|
||||||
:license {:name "MIT"}
|
:license {:name "MIT"}
|
||||||
:description "A simple ClojureScript interface to React"
|
:description "A simple ClojureScript interface to React"
|
||||||
|
|
Loading…
Reference in New Issue