-
-
Save jobez/ee4d24cbe0663b99a8c4 to your computer and use it in GitHub Desktop.
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
{: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}]}}} |
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
(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])) |
Author
jobez
commented
Dec 27, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment