Created
October 23, 2014 02:17
-
-
Save jobez/063b00066738de03c32b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 saphograph "0.1.0" | |
| :description "mentat network" | |
| :url "" | |
| :dependencies [[org.clojure/clojure "1.5.1"] | |
| [org.clojure/clojurescript "0.0-2197"]] | |
| :node-dependencies [] | |
| :plugins [[lein-npm "0.4.0"] | |
| [lein-cljsbuild "1.0.3"]] | |
| :hooks [leiningen.cljsbuild] | |
| :cljsbuild { | |
| :builds [{ | |
| :source-paths ["src"] | |
| :compiler { | |
| :output-dir "resources" | |
| :output-to "resources/main.js" | |
| :source-map "resources/main.js.map" | |
| :pretty-print true}}]}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment