-
Notifications
You must be signed in to change notification settings - Fork 21
/
project.clj
56 lines (47 loc) · 2.88 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(def clojurescript-version (or (System/getenv "CANARY_CLOJURESCRIPT_VERSION") "1.11.4"))
(defproject binaryage/chromex "0.9.3"
:description "A ClojureScript wrapper for writing Chrome Extensions and Apps."
:url "https://github.com/binaryage/chromex"
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"
:distribution :repo}
:scm {:name "git" :url "https://github.com/binaryage/chromex"}
:dependencies [[org.clojure/clojure "1.10.3" :scope "provided"]
[org.clojure/clojurescript ~clojurescript-version :scope "provided"]
[org.clojure/core.async "1.5.648"]
[binaryage/oops "0.7.2"]
[environ "1.2.0"]]
:clean-targets ^{:protect false} ["target"
"test/resources/.compiled"]
:plugins [[lein-cljsbuild "1.1.8"]]
:resource-paths ^:replace []
:source-paths ["src/lib"
"src/exts"
"src/exts_private"
"src/exts_internal"
"src/apps"
"src/apps_private"
"src/apps_internal"]
:test-paths ["test/src"]
:jar-exclusions [#"readme\.md"]
:cljsbuild {:builds {}} ; prevent https://github.com/emezeske/lein-cljsbuild/issues/413
:profiles {:test-none
{:cljsbuild {:builds {:tests
{:source-paths ["src/lib"
"test/src"]
:compiler {:output-to "test/resources/.compiled/optimizations_none/chromex.test.js"
:output-dir "test/resources/.compiled/optimizations_none"
:asset-path ".compiled/optimizations_none"
:main chromex.runner
:optimizations :none}}}}}
:test-advanced
{:cljsbuild {:builds {:tests
{:source-paths ["src/lib"
"test/src"]
:compiler {:output-to "test/resources/.compiled/optimizations_advanced/chromex.test.js"
:output-dir "test/resources/.compiled/optimizations_advanced"
:asset-path ".compiled/optimizations_advanced"
:main chromex.runner
:optimizations :advanced
:checked-arrays :warn
:elide-asserts true}}}}}})