-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
35 lines (35 loc) · 1.38 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
35
(defproject tavistock/amalgam "0.1.1"
:description "Tools to denormalize, normalize, and combine nested maps"
:url "http://github.com/Tavistock/amalgam"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.238"]
[medley "1.0.0"]]
:plugins [[lein-cljsbuild "1.1.7"]
[lein-doo "0.1.10"]
[lein-figwheel "0.5.16"]]
:doo {:paths {:rhino "lein run -m org.mozilla.javascript.tools.shell.Main"}}
:aliases {"test" ["with-profile" "test" "doo" "rhino" "test" "once"]}
:profiles
{:test {:dependencies [[org.mozilla/rhino "1.7.7"]]
:cljsbuild
{:builds
[{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "target/main.js"
:output-dir "target"
:main amalgam.test-runner
:optimizations :simple}}]}}}
:cljsbuild
{:builds
[{:id "client"
:source-paths ["src"]
:figwheel true
:compiler {:parallel-build true
:optimizations :none
:main amalgam.core
:output-dir "resources/public/js/out"
:output-to "resources/public/js/amalgam.js"
:asset-path "js/out"
:npm-deps false}}]})