-
Notifications
You must be signed in to change notification settings - Fork 11
/
project.clj
27 lines (22 loc) · 1.01 KB
/
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
27
(defproject scheje "0.2.16"
:description "A Scheme Interpreter on Top of Clojure"
:url "https://turbopape.github.io/scheje"
:license {:name "MIT"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.8.51"]
[com.lucasbradstreet/instaparse-cljs "1.4.1.1"]
[org.clojure/core.match "0.3.0-alpha4"]]
:clean-targets ^{:protect false} ["target"]
:plugins [[lein-cljsbuild "1.1.2"]]
:cljsbuild {
:builds [{:id "scheje-node-repl"
:source-paths ["src"]
:compiler {:main scheje.repl
:output-to "target/repl_out/scheje_repl.js"
:output-dir "target/repl_out"
:target :nodejs
:optimizations :none
:source-map true}}]}
:main scheje.repl
:uberjar {:aot :all})