-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
21 lines (18 loc) · 750 Bytes
/
project.clj
File metadata and controls
21 lines (18 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject degas "0.2.41"
:description "Small framework for evolutionary computation in the browser."
:url "https://github.com/freetonik/degas"
:license { :name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html" }
:plugins [[lein-cljsbuild "1.1.7"]]
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.520"]]
:cljsbuild { :builds
[{ :id "advanced"
:source-paths ["src"]
:compiler
{
:output-to "target/main.js"
:optimizations :advanced
:source-map "target/main.js.map"
:pretty-print false }}]}
)