-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
31 lines (31 loc) · 1.99 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
(defproject subman-chrome "0.1.0-SNAPSHOT"
:description "Chrome extension for subman.io"
:url "https://github.com/nvbn/subman-chrome"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2356"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[com.cognitect/transit-cljs "0.8.188"]
[cljs-http "0.1.16"]
[swiss-arrows "1.0.0"]
[clj-di "0.5.0"]
[alandipert/storage-atom "1.2.3"]]
:plugins [[lein-cljsbuild "1.0.3"]
[com.cemerick/clojurescript.test "0.3.1"]]
:cljsbuild {:builds [{:source-paths ["src/subman_chrome/background/"
"src/subman_chrome/shared"]
:compiler {:output-to "resources/background.js"
:optimizations :whitespace
:pretty-print false}}
{:source-paths ["src/subman_chrome/content/"
"src/subman_chrome/shared"]
:compiler {:output-to "resources/content.js"
:optimizations :whitespace
:pretty-print false}}
{:source-paths ["src/" "test/"]
:compiler {:output-to "target/cljs-test.js"
:optimizations :whitespace
:pretty-print false}}]
:test-commands {"test" ["phantomjs" :runner
"target/cljs-test.js"]}})