-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
21 lines (21 loc) · 854 Bytes
/
project.clj
File metadata and controls
21 lines (21 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject adad "0.1.0"
:clojurescript? true
:description "ClojureScript implementation of game 2048"
:url "https://github.com/flash42/adad"
:scm {:url "git@github.com:flash42/adad.git"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2234"]
[prismatic/dommy "0.1.2"]
[com.cemerick/clojurescript.test "0.3.1"]]
:hooks [leiningen.cljsbuild]
:plugins [[lein-cljsbuild "1.0.3"]
[com.cemerick/clojurescript.test "0.3.1"]]
:cljsbuild
{:builds
{:test {:source-paths ["src" "test"]
:incremental? true
:compiler {:output-to "out/main.js"
:optimizations :whitespace
:pretty-print true}}}
:test-commands {"unit" ["phantomjs" :runner
"out/main.js"]}})