-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
29 lines (28 loc) · 1.23 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
(defproject hopen/hopen "0.1.0-SNAPSHOT"
:description "A simple, modern, flexible and portable template engine for Clojure environments."
:url "https://github.com/clojure-tw/hopen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src"]
:resource-paths ["resources"]
:target-path "target/%s"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.520"]
[instaparse "1.4.10"]]
:plugins [[lein-doo "0.1.10"]]
:cljsbuild
{:builds [{:id "node-test"
:source-paths ["src" "test"]
:compiler {:output-to "resources/public/js/index.js"
:main hopen.runner
:optimizations :none
:pretty-print true
:target :nodejs}}
{:id "browser-test"
:source-paths ["src" "test"]
:compiler {:output-to "resources/public/js/index.js"
:main hopen.runner
:optimizations :none
:pretty-print false}}]}
:doo {:alias {:browsers [:chrome :firefox]}
:paths {:karma "./node_modules/karma/bin/karma"}})