forked from day8/re-frame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
91 lines (75 loc) · 4.64 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
(defproject re-frame "lein-git-inject/version"
:description "A ClojureScript MVC-like Framework For Writing SPAs Using Reagent."
:url "https://github.com/day8/re-frame.git"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.10.1" :scope "provided"]
[org.clojure/clojurescript "1.10.597" :scope "provided"
:exclusions [com.google.javascript/closure-compiler-unshaded
org.clojure/google-closure-library
org.clojure/google-closure-library-third-party]]
[thheller/shadow-cljs "2.8.83" :scope "provided"]
[reagent "0.9.1"]
[net.cgrand/macrovich "0.2.1"]
[org.clojure/tools.logging "0.4.1"]]
:plugins [[day8/lein-git-inject "0.0.11"]
[lein-shadow "0.1.7"]]
:middleware [leiningen.git-inject/middleware]
:git-inject {:version-pattern #"v(\d+\.\d+\.\d+.*)"}
:profiles {:debug {:debug true}
:dev {:dependencies [[binaryage/devtools "0.9.11"]]
:plugins [[lein-ancient "0.6.15"]
[lein-shell "0.5.0"]]}}
:clean-targets [:target-path "run/compiled"]
:resource-paths ["run/resources"]
:jvm-opts ["-Xmx1g"]
:source-paths ["src"]
:test-paths ["test"]
:shell {:commands {"open" {:windows ["cmd" "/c" "start"]
:macosx "open"
:linux "xdg-open"}}}
:deploy-repositories [["clojars" {:sign-releases false
:url "https://clojars.org/repo"
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_PASSWORD}]]
:release-tasks [["deploy" "clojars"]]
:shadow-cljs {:nrepl {:port 8777}
:builds {:browser-test
{:target :browser-test
:ns-regexp "re-frame\\..*-test$"
:test-dir "run/compiled/browser/test"
:compiler-options {:pretty-print true
:external-config {:devtools/config {:features-to-install [:formatters :hints]}}}
:devtools {:http-port 3449
:http-root "run/compiled/browser/test"
:preloads [devtools.preload]}}
:karma-test
{:target :karma
:ns-regexp "re-frame\\..*-test$"
:output-to "run/compiled/karma/test/test.js"
:compiler-options {:pretty-print true
:closure-defines {re-frame.trace.trace-enabled? true}}}}}
:aliases {"test-once" ["do" "clean," "shadow" "compile" "browser-test," "shell" "open" "run/compiled/browser/test/index.html"]
"test-auto" ["do" "clean," "shadow" "watch" "browser-test,"]
"karma-once" ["do"
["clean"]
["shadow" "compile" "karma-test"]
["shell" "karma" "start" "--single-run" "--reporters" "junit,dots"]]
"karma-auto" ["do" "clean," "shadow" "watch" "karma-test,"]
;; NOTE: In order to compile docs you would need to install
;; gitbook-cli(2.3.2) utility globaly using npm or yarn
"docs-serve" ^{:doc "Runs the development server of docs with live reloading"} ["shell" "gitbook" "serve" "./" "./build/re-frame/"]
"docs-build" ^{:doc "Builds the HTML version of docs"} ["shell" "gitbook" "build" "./" "./build/re-frame/"]
;; NOTE: Calibre and svgexport(0.3.2) are needed to build below
;; formats of docs. Install svgexpor3t using npm or yarn.
"docs-pdf" ^{:doc "Builds the PDF version of docs"}
["do"
["shell" "mkdir" "-p" "./build/"]
["shell" "gitbook" "pdf" "./" "./build/re-frame.pdf"]]
"docs-mobi" ^{:doc "Builds the MOBI version of docs"}
["do"
["shell" "mkdir" "-p" "./build/"]
["shell" "gitbook" "mobi" "./" "./build/re-frame.mobi"]]
"docs-epub" ^{:doc "Builds the EPUB version of docs"}
["do"
["shell" "mkdir" "-p" "./build/"]
["shell" "gitbook" "epub" "./" "./build/re-frame.epub"]]})