-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
36 lines (28 loc) · 1.54 KB
/
project.clj
File metadata and controls
36 lines (28 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(defproject jeremys/flow "0.1.0-alpha1"
:description "Little dataflow engine"
:url "https://github.com/JeremS/flow"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha17"]
[org.clojure/clojurescript "1.9.671"]]
:source-paths ["src/main"]
:plugins [[lein-cljsbuild "1.1.6"]]
:clean-targets ^{:protect false} ["resources/public/js/"
"target"]
:target-path "target/%s"
:profiles {:dev {:dependencies [[figwheel-sidecar "0.5.10"]
[binaryage/devtools "0.9.4"]
[devcards "0.2.3"]]
:source-paths ["src/cards" "test"]}}
:cljsbuild {:builds [{:id "devcards"
:source-paths ["src" "test" "scripts"]
:figwheel { :devcards true}
:compiler {:main "flow.cards"
:asset-path "js/devcards_out"
:output-to "resources/public/js/devcards.js"
:output-dir "resources/public/js/devcards_out"
:optimizations :none
:preloads [devtools.preload]
:external-config
{:devtools/config
{:features-to-install [:formatters :hints]}}}}]})