-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathproject.clj
69 lines (66 loc) · 3.12 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
(defproject facjure/mesh "0.6.0"
:description "A toolkit for responsive grids and web typography"
:url "https://github.com/facjure/mesh"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git" :url "https://github.com/facjure/mesh"}
:min-lein-version "2.8.1"
:global-vars {*warn-on-reflection* false *assert* false}
:dependencies [[org.clojure/clojure "1.10.0" :scope "provided"]
[org.clojure/clojurescript "1.10.439" :scope "provided"]
[com.gfredericks/cljs-numbers "0.1.2"]
[garden "1.3.6"]]
:node-dependencies [[autoprefixer "9.4.3"]
[css-min "0.4.3"]]
:source-paths ["src" "target/classes"]
:clean-targets ^{:protect false} ["resources/public/js" "target/classes"]
:cljsbuild {:builds
[{:id "dev"
:source-paths ["examples" "dev"]
:compiler {:main repl
:output-to "resources/public/js/mesh.js"
:output-dir "resources/public/js/out"
:asset-path "js/out"
:optimizations :none
:source-map-timestamp true
:install-deps true
:npm-deps {:create-react-class "15.6.0"}
:preloads [devtools.preload]}
:figwheel {}}
{:id "prod"
:source-paths ["src"]
:compiler {:output-to "dist/mesh.min.js"
:optimizations :advanced
:pretty-print false}}]}
:garden {:builds
[{:id "typography"
:source-paths [x"examples"]
:stylesheet typography.styles/index
:compiler {:output-to "resources/public/css/typography.css"
:pretty-print true}}
{:id "grids"
:source-paths ["src" "examples"]
:stylesheet grids.styles/index
:compiler {:output-to "resources/public/css/grids.css"
:pretty-print true}}]}
:plugins [[lein-cljsbuild "1.1.7"]
[lein-figwheel "0.5.16"]
[lein-garden "0.2.8"]
[lein-npm "0.6.2"]
[lein-pdo "0.1.1"]
[lein-doo "0.1.9"]]
:repl-options {:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}
:profiles {:dev
{:dependencies [[cider/piggieback "0.3.10" :exclude [org.clojure/tools.nrepl]]
[binaryage/devtools "0.9.9"]
[figwheel-sidecar "0.5.16"]
[sablono "0.3.4"]
[org.omcljs/om "0.9.0"]]
:figwheel {:http-server-root "public"
:server-port 3449
:nrepl-port 7888
:css-dirs ["resources/public/css"]
}}}
:aliases {"init" ["pdo" "clean," "garden" "clean"]
"dev" ["pdo" "garden" "auto," "figwheel"]
"release" ["pdo" "clean," "cljsbuild" "once" "prod"]})