-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproject.clj
More file actions
32 lines (28 loc) · 1.24 KB
/
project.clj
File metadata and controls
32 lines (28 loc) · 1.24 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
(defproject clojure-exercise-ui "0.0.1"
:dependencies [[io.bloomventures/omni "0.34.1"
:exclusions [borkdude/edamame]]
[cljsjs/codemirror "5.44.0-1"]
[re-frame "1.3.0"]
[rewrite-clj "1.1.47"]
[zprint "1.2.7"]
[metosin/malli "0.17.0"]
;; downgrade, to fix issue #832
;; https://github.com/babashka/sci/blob/master/CHANGELOG.md#0536-2022-11-14
[org.babashka/sci "0.3.5"]
;; [org.clojure/clojure "1.10.0"] from omni
;; [org.clojure/clojurescript "1.10.520"] from omni
;; [io.bloomventures/commons "0.5.1"] from omni
;; [reagent "1.1.1"] from omni
;; [cljsjs/react "17.0.2-0"] from omni
;; [cljsjs/react-dom "17.0.2-0"] from omni
;; [garden "1.3.5"] from omni
]
:main exercise-ui.core
:plugins [[io.bloomventures/omni "0.34.1"]]
:omni-config exercise-ui.omni-config/omni-config
:profiles {:dev
{:source-paths ["dev-src" "src"]}
:uberjar
{:aot :all
:prep-tasks [["omni" "compile"]
"compile"]}})