-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathproject.clj
22 lines (16 loc) · 852 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject karma-reporter "3.1.0"
:description "A plugin for running clojurescript tests with Karma."
:url "https://github.com/honzabrecka/karma-reporter"
:license {:name "MIT License"
:url "http://www.opensource.org/licenses/mit-license.php"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.229"]
[fipp "0.6.12"]]
:plugins [[lein-cljsbuild "1.1.1"]]
:cljsbuild {:builds [{:id "test"
:source-paths ["example_src" "src"]
:compiler {:output-to "target/public/test/foo.js"
:output-dir "target/public/test"
:asset-path "test"
:main foo.test-runner
:optimizations :none}}]})