|
|
@ -4,34 +4,22 @@
|
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
|
|
|
|
|
|
|
|
|
|
:dependencies [
|
|
|
|
:dependencies [[org.clojure/clojure "1.10.1"]
|
|
|
|
[org.clojure/clojure "1.8.0"]
|
|
|
|
[org.clojure/clojurescript "1.10.520"]]
|
|
|
|
[org.clojure/clojurescript "1.9.521"]
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:plugins [
|
|
|
|
:plugins [[lein-cljsbuild "1.1.7"]
|
|
|
|
[lein-cljsbuild "1.1.7"]
|
|
|
|
[lein-figwheel "0.5.19"]]
|
|
|
|
[lein-figwheel "0.5.14"]
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:cljsbuild {
|
|
|
|
:cljsbuild {:builds [{:id "default"
|
|
|
|
:builds [{
|
|
|
|
|
|
|
|
:id "default"
|
|
|
|
|
|
|
|
:source-paths ["src/cljs"]
|
|
|
|
:source-paths ["src/cljs"]
|
|
|
|
:figwheel {:on-jsload "topdown2d.core/fig-reload"}
|
|
|
|
:figwheel {:on-jsload "topdown2d.core/fig-reload"}
|
|
|
|
:compiler {
|
|
|
|
:compiler {:main topdown2d.core
|
|
|
|
:main topdown2d.core
|
|
|
|
|
|
|
|
:output-to "resources/public/js/cljsbuild-main.js"
|
|
|
|
:output-to "resources/public/js/cljsbuild-main.js"
|
|
|
|
:output-dir "resources/public/js/out"
|
|
|
|
:output-dir "resources/public/js/out"
|
|
|
|
:asset-path "js/out"
|
|
|
|
:asset-path "js/out"
|
|
|
|
:pretty-print true
|
|
|
|
:pretty-print true}}]}
|
|
|
|
}
|
|
|
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
:figwheel {
|
|
|
|
:figwheel {:css-dirs ["resources/css"]}
|
|
|
|
:css-dirs ["resources/css"]
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;:hooks [leiningen.cljsbuild]
|
|
|
|
;:hooks [leiningen.cljsbuild]
|
|
|
|
|
|
|
|
|
|
|
|