-
Notifications
You must be signed in to change notification settings - Fork 45
/
project.clj
21 lines (21 loc) · 1.04 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject posh "0.5.7"
:description "Luxuriously easy and powerful Reagent / Datascript front-end framework"
:url "http://github.com/mpdairy/posh/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.520"]
#_[datascript "0.18.6"]
#_[com.datomic/datomic-free "0.9.5407"]
[org.clojure/core.match "0.3.0"]]
:plugins [[lein-cljsbuild "1.1.3"]]
:profiles {:test {:dependencies [[datascript "0.18.6"]]}}
:cljsbuild {:builds [ {:id "posh"
:source-paths ["src/"]
:figwheel false
:compiler {:main "posh.core"
:asset-path "js"
:output-to "resources/public/js/main.js"
:output-dir "resources/public/js"} } ]}
:scm {:name "git"
:url "https://github.com/mpdairy/posh"})