-
Notifications
You must be signed in to change notification settings - Fork 7
/
project.clj
37 lines (30 loc) · 852 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
25
26
27
28
29
30
31
32
33
34
35
36
(defproject com.thheller/shadow-grove "1.0.0"
:description "A ClojureScript system to build browser based frontends"
:url "http://github.com/thheller/shadow-grove"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories
{"clojars" {:url "https://clojars.org/repo"
:sign-releases false}}
:dependencies
[[org.clojure/clojure "1.11.1" :scope "provided"]
[org.clojure/clojurescript "1.11.132" :scope "provided"]
[com.thheller/shadow-css "0.4.5"]]
:resource-paths
["src/resources"]
:source-paths
["src/main"]
:test-paths
["src/test"]
:profiles
{:provided
{:source-paths
["src/ui-release"]}
:dev
{:source-paths ["src/dev"]
:dependencies
[]}
:cljs-dev
{:dependencies
[[thheller/shadow-cljs "2.28.6"]
]}})