Skip to content

Instantly share code, notes, and snippets.

@frankhale
Created January 13, 2014 17:42
Show Gist options
  • Save frankhale/8404559 to your computer and use it in GitHub Desktop.
Save frankhale/8404559 to your computer and use it in GitHub Desktop.
Barebones project.clj for Clojurescript
(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