-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (17 loc) · 863 Bytes
/
project.clj
File metadata and controls
17 lines (17 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject lein-tizen "0.1.0-SNAPSHOT"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.908"]
[reagent "0.8.0-alpha2"]]
:plugins [[lein-figwheel "0.5.13"]]
:clean-targets ^{:protect false} [:target-path "resources/public/js/compiled/out"]
:figwheel {:server-ip "0.0.0.0"}
:cljsbuild {
:builds [{:id "dev"
:source-paths ["src"]
:figwheel {:websocket-host "10.0.2.2"
:heads-up-display false
:on-jsload "lein-tizen.core/on-js-reload"}
:compiler {:main "lein-tizen.core"
:asset-path "js/compiled/out"
:output-to "resources/public/main.js"
:output-dir "resources/public/js/compiled/out"}}]})