Created
January 13, 2014 17:42
-
-
Save frankhale/8404559 to your computer and use it in GitHub Desktop.
Barebones project.clj for Clojurescript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject your-project "0.0.1-SNAPSHOT" | |
:description "Describe your app here" | |
:url "http://somewhere.com" | |
:license {:name "Eclipse Public License" | |
:url "http://www.eclipse.org/legal/epl-v10.html"} | |
:dependencies [[org.clojure/clojure "1.5.1"] | |
[org.clojure/clojurescript "0.0-2138"]] | |
:plugins [[lein-cljsbuild "1.0.1"]] | |
:cljsbuild | |
{:builds | |
[{:source-paths ["src"], | |
:id "dev", | |
:compiler | |
{:output-to "resources/scripts/main.js", | |
:optimizations :whitespace | |
:pretty-print true}}]}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment