This repository has been archived by the owner on Apr 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
project.clj
34 lines (34 loc) · 1.58 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
28
29
30
31
32
33
34
(defproject io.nervous/hildebrand "0.4.6-SNAPSHOT"
:description "High-level, asynchronous AWS client library"
:url "https://github.com/nervous-systems/hildebrand"
:license {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"}
:scm {:name "git" :url "https://github.com/nervous-systems/hildebrand"}
:source-paths ["src"]
:dependencies [[org.clojure/clojure "1.8.0"]
[io.nervous/eulalie "0.6.10"]]
:npm {:dependencies [[bignumber.js "2.4.0"]]}
:plugins [[lein-cljsbuild "1.1.4"]
[lein-npm "0.6.2"]]
:cljsbuild
{:builds [{:id "main"
:source-paths ["src"]
:compiler {:output-to "hildebrand.js"
:target :nodejs
:hashbang false
:optimizations :none
:source-map true}}
{:id "test-none"
:source-paths ["src" "test"]
:compiler {:output-to "target/test-none/hildebrand-test.js"
:output-dir "target/test-none"
:target :nodejs
:optimizations :none
:main "hildebrand.test.runner"}}
{:id "test-advanced"
:source-paths ["src" "test"]
:notify-command ["node" "target/test-advanced/hildebrand-test.js"]
:compiler {:output-to "target/test-advanced/hildebrand-test.js"
:output-dir "target/test-advanced"
:target :nodejs
:optimizations :advanced}}]}
:profiles {:dev {:source-paths ["src" "test"]}})