-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
24 lines (22 loc) · 1.1 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
(defproject darkleaf/multidecorators "1.0.5"
:description "Like multimethods but multidecorators."
:url "https://github.com/darkleaf/multidecorators/"
:license {:name "Unlicense"
:url "http://unlicense.org/"}
:dependencies [[org.clojure/clojure "1.10.1" :scope "provided"]
[org.clojure/clojurescript "1.10.520" :scope "provided"]]
:plugins [[lein-doo "0.1.11"]]
:cljsbuild
{:builds [{:id "node-none"
:source-paths ["src" "test"]
:compiler {:output-to "out/node-none.js"
:target :nodejs
:optimizations :none
:main darkleaf.multidecorators-runner}}
{:id "node-advanced"
:source-paths ["src" "test"]
:compiler {:output-to "out/node-advanced.js"
:target :nodejs
:optimizations :advanced
:main darkleaf.multidecorators-runner}}]}
:repl-options {:init-ns darkleaf.multidecorators})