Skip to content

Commit

Permalink
parinfer formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
oakmac committed Feb 9, 2016
1 parent eb08d5b commit 318e015
Showing 1 changed file with 24 additions and 29 deletions.
53 changes: 24 additions & 29 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,39 +1,34 @@
(defproject cuttle "1.1"

:description "A user interface for the ClojureScript compiler."
:url "https://github.com/oakmac/cuttle"
:license {
:name "MIT License"
:url "https://github.com/oakmac/cuttle/blob/master/LICENSE.md"
:distribution :repo}
:license {:name "MIT License"
:url "https://github.com/oakmac/cuttle/blob/master/LICENSE.md"
:distribution :repo}

:source-paths ["src-clj"]

:dependencies [
[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2760"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[hiccups "0.3.0"]
[quiescent "0.1.4"]
[sablono "0.2.22"]]

:plugins [
[lein-cljsbuild "1.0.3"]]
:dependencies
[[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2760"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[hiccups "0.3.0"]
[quiescent "0.1.4"]
[sablono "0.2.22"]]

:cljsbuild {
:builds {
:plugins [[lein-cljsbuild "1.0.3"]]

:main {
:cljsbuild
{:builds
[{:id "main"
:source-paths ["src-cljs"]
:compiler {
:optimizations :whitespace
:output-to "app/js/main.js"}}
:compiler {:optimizations :whitespace
:output-to "app/js/main.js"}}

; :main-min {
; :source-paths ["src-cljs"]
; :compiler {
; :externs ["externs/react-0.11.0.js" "externs/misc.js"]
; :output-to "app/js/main.min.js"
; :optimizations :advanced
; :pretty-print false }}

}})
{:id "main-min"
:source-paths ["src-cljs"]
:compiler
{:externs ["externs/react-0.11.0.js" "externs/misc.js"]
:output-to "app/js/main.min.js"
:optimizations :advanced
:pretty-print false}}]})

0 comments on commit 318e015

Please sign in to comment.