forked from teropa/hiccups
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
38 lines (33 loc) · 1.26 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
(defproject macchiato/hiccups "0.4.2"
:description "a library for rendering HTML in ClojureScript using Hiccup syntax"
:url "https://github.com/macchiato-framework/hiccups"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.2.0"
:clojurescript? true
:source-paths ["src"]
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.597"]]
:plugins [[lein-doo "0.1.7"]
[lein-cljsbuild "1.1.4"]]
:profiles {:test
{:cljsbuild
{:builds
{:test
{:source-paths ["src" "test/cljs"]
:compiler {:main hiccups.runner
:output-to "target/test/core.js"
:target :nodejs
:optimizations :none
:source-map true
:pretty-print true}}}}
:doo {:build "test"}}}
:aliases
{"test"
["do"
["clean"]
["with-profile" "test" "doo" "node" "once"]]
"test-watch"
["do"
["clean"]
["with-profile" "test" "doo" "node"]]})