-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathproject.clj
47 lines (47 loc) · 2.79 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(defproject arttuka/reagent-material-ui "5.11.12-0"
:description "Reagent wrapper library for MUI (formerly Material UI) v5"
:url "https://github.com/arttuka/reagent-material-ui"
:license {:name "Eclipse Public License 2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[reagent "1.1.1"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[camel-snake-kebab "0.4.3"]
[arttuka/reagent-material-ui-js "5.11.12-0"]]
:plugins [[lein-cljfmt "0.9.2"]
[lein-cljsbuild "1.1.8"]
[lein-doo "0.1.11"]]
:source-paths ["src/core" "src/x" "src/icons"]
:resource-paths ["deps.cljs"]
:profiles {:dev {:test-paths ["test"]
:resource-paths ["target" "dev-resources"]}
:provided {:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/clojurescript "1.11.60"]
[cljsjs/react "17.0.2-0"]
[cljsjs/react-dom "17.0.2-0"]
[prismatic/dommy "1.1.0"]]}}
:clean-targets ^{:protect false} ["target" ".shadow-cljs"]
:cljfmt {:indents {forward-ref [[:inner 0]]}
:paths ["src/core" "src/x"]}
:cljsbuild {:builds [{:id "test"
:source-paths ["src/core" "test"]
:compiler {:output-to "target/public/js/test-main.js"
:output-dir "target/public/js/out"
:asset-path "js/out"
:main reagent-mui.test-runner
:optimizations :none
:npm-deps false}}
{:id "test-adv"
:source-paths ["src/core" "test"]
:compiler {:output-to "target/public/js/test-main-adv.js"
:output-dir "target/public/js/out-adv"
:main reagent-mui.test-runner
:optimizations :advanced
:npm-deps false}}]}
:doo {:paths {:karma "./node_modules/karma/bin/karma"}}
:aliases {"test" ["do" ["clean"] ["doo:test"] ["doo:test-adv"]]
"doo:test" ["doo" "chrome-headless" "test" "once"]
"doo:test-adv" ["doo" "chrome-headless" "test-adv" "once"]}
:deploy-repositories [["releases" {:url "https://repo.clojars.org"
:sign-releases false
:username :env/clojars_username
:password :env/clojars_password}]])