-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
26 lines (26 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
(defproject butler "0.2.1-SNAPSHOT"
:description "Bring Web Workers to ClojureScript"
:url "https://github.com/federkasten/butler"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies [[com.cognitect/transit-cljs "0.8.237"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.7.228"]]
:plugins [[lein-cljsbuild "1.1.2"]]}}
:source-paths ["src"]
:cljsbuild {:builds
{:dev
{:id "dev"
:source-paths ["src"]
:jar true
:compiler {:output-to "target/gen/butler_dev.js"
:optimizations :whitespace
:pretty-print true}}
:prod
{:id "prod"
:source-paths ["src"]
:jar true
:compiler {:output-to "target/gen/butler.js"
:optimizations :advanced
:pretty-print true}}}}
:signing {:gpg-key "[email protected]"})