-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
24 lines (16 loc) · 908 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(defproject org.clojars.ertucetin/re-frame-flow "0.1.4"
:description "Graph based visualization tool for Re-frame event chains"
:author "Ertuğrul Çetin"
:url "https://github.com/ertugrulcetin/re-frame-flow"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"}
:min-lein-version "2.9.0"
:clean-targets ^{:protect false} ["dev/resources/public/js/compiled" "target"]
:source-paths ["src"]
:aliases {"watch" ["with-profile" "dev" "run" "-m" "shadow.cljs.devtools.cli" "watch" "app"]
"release" ["with-profile" "dev" "run" "-m" "shadow.cljs.devtools.cli" "release" "app"]}
:profiles {:dev {:dependencies [[reagent "1.0.0"]
[re-frame "1.2.0"]
[thheller/shadow-cljs "2.12.5"]]
:source-paths ["dev"]
:resource-paths ["dev/resources"]}})