-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
26 lines (21 loc) · 901 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
26
(defproject com.alchemyislands/patterning "0.5.6-SNAPSHOT"
:description "Generating Patterns with Clojure"
:url "http://alchemyislands.com/"
:license {:name "Gnu Lesser Public License"
:url "https://www.gnu.org/licenses/lgpl.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.7.28"]
]
:plugins [[lein-cljsbuild "1.0.6"]
[lein-localrepo "0.4.0"]
]
:source-paths ["src/clj" "src/cljc" ]
:cljsbuild {:builds [{
:source-paths ["src/cljc" ]
:compiler {
:output-to "browser-based/js/main.js"
:optimizations :whitespace
:pretty-print true }
} ]}
:aot [patterning.core]
:main patterning.core)