-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
25 lines (25 loc) · 964 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(defproject
com.degel/sodium "0.13.0-SNAPSHOT"
:description "A wrapper around soda-ash and semantic-ui-react"
:url "https://github.com/deg/sodium"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.238"]
[re-frame "0.10.5"]
[reagent "0.8.1"]
[soda-ash "0.79.1"]
[com.degel/iron "0.4.0"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.8"]]
:cljsbuild
{:builds
[{:id "dev"
:source-paths ["src"]
:compiler {:pretty-print true}}
{:id "test"
:source-paths ["src" "test"]
:compiler {:main sodium.runner
:output-to "resources/public/js/compiled/test.js"
:output-dir "resources/public/js/compiled/test/out"
:optimizations :none}}]})