-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
29 lines (29 loc) · 1.11 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
;; Copyright (c) Christopher Meiklejohn. All rights reserved.
;;
;; The use and distribution terms for this software are covered by the
;; Eclipse Public License 1.0 which can be found in the file
;; LICENSE.html at the root of this distribution. By using this
;; software in any fashion, you are agreeing to be bound by the terms of
;; this license. You must not remove this notice, or any other, from
;; this software.
;;
(defproject shafty "0.0.2-SNAPSHOT"
:description "ClojureScript functional reactive programming library."
:url "https://github.com/cmeiklejohn/shafty"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:dependencies [[org.clojure/clojure "1.5.0"]]
:plugins [[lein-cljsbuild "0.3.0"]]
:source-paths ["src/clj" "src/cljs"]
:hooks [leiningen.cljsbuild]
:cljsbuild
{:builds
[{:source-paths ["src/cljs"],
:id "core",
:compiler
{:pretty-print true,
:output-to "resources/private/core.js",
:optimizations :whitespace}}
]})