Skip to content

Instantly share code, notes, and snippets.

@jobez
Last active December 27, 2015 21:38
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 jobez/ee4d24cbe0663b99a8c4 to your computer and use it in GitHub Desktop.
Save jobez/ee4d24cbe0663b99a8c4 to your computer and use it in GitHub Desktop.
{:naive-web
{ ;; The path to the entry point for the build
:source-dir "src/rfz/"
:source-file "src/rfz/web/core.cljs"
;; The standard ClojureScript compiler options:
;; (See the ClojureScript compiler documentation for details.)
:compiler {:output-to "resources/public/cljs-js/naive-web.js"
:output-dir "resources/public/cljs-js/"
:main "rfz.web.core"
:optimizations :none
:asset-path "cljs-js/"
:pseudo-names true
:source-map "resources/public/cljs-js/naive-web.js.map"
:pretty-print true
:foreign-libs [{:file "resources/public/js/appModel.js"
:provides ["bb.appmodel"]
:module-type :amd}]}}}
(ns rfz.web.core
(:require [rfz.client.repl :as repl]
[lively.core :as lively]
[rfz.web.hello-world :refer [root-mount]]
[bb.appmodel :as app-model]))
@jobez
Copy link
Author

jobez commented Dec 27, 2015

screenshot 2015-12-27 13 43 21

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment