Skip to content

Instantly share code, notes, and snippets.

/project.clj Secret

Created April 27, 2013 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/28368bf67d0b37d7f5bf to your computer and use it in GitHub Desktop.
Save anonymous/28368bf67d0b37d7f5bf to your computer and use it in GitHub Desktop.
(defproject scratch "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.0"]
[org.clojure/clojurescript "0.0-1586"]]
:plugins [[lein-cljsbuild "0.3.0"]]
:source-paths ["src/clj"]
:cljsbuild
{:builds
[{:source-paths ["src/cljs"],
:compiler
{:pretty-print :true,
:output-to "resources/public/scratch.js",
:optimizations :whitespace}}]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment