forked from Vincit/venia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
18 lines (18 loc) · 1.03 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject vincit/venia "0.2.6-SNAPSHOT"
:description "Clojure(Script) graphql client"
:url "https://github.com/Vincit/venia"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/clojurescript "1.9.946" :scope "provided"]]
:plugins [[lein-doo "0.1.7"]]
:clean-targets ^{:protect false} ["resources" "target"]
:aliases {"test" ["do" "test" ["doo" "once" "phantom" "test"]]}
:cljsbuild {:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:output-to "resources/test/js/unit-test.js"
:process-shim false
:main venia.runner
:optimizations :none
:pretty-print true
:output-dir "resources/test/js/gen/out"}}]})