-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
17 lines (16 loc) · 859 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject re-chain "1.4-SNAPSHOT"
:description "Easy chaining of re-frame events"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:url "https://github.com/ingesolvoll/re-chain"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.597"]
[re-frame "1.2.0"]
[day8.re-frame/test "0.1.5"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.24.1"]]
:deploy-repositories [["clojars" {:sign-releases false
:url "https://clojars.org/repo"
:username :env/clojars_username
:password :env/clojars_password}]]
:aliases {"deploy!" ["do" ["test"] ["deploy" "clojars"]]})