-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
24 lines (24 loc) · 937 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
(defproject
com.degel/iron "0.5.0-SNAPSHOT"
:description "Front-end utilities and support for ClojureScript and re-frame projects"
:url "https://github.com/deg/iron"
: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"]
[expound "0.7.0"]
[re-frame "0.10.5"]
[reagent "0.8.1"]]
: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 iron.runner
:output-to "resources/public/js/compiled/test.js"
:output-dir "resources/public/js/compiled/test/out"
:optimizations :none}}]})