-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
16 lines (16 loc) · 879 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject doc-builder "0.1.1"
:description "data driven HTML/PDF document builder"
:url "https://github.com/yogthos/doc-builder"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.773"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:cljsbuild {:builds [{:id "release"
:source-paths ["src"]
:compiler {:main doc-builder.core
:output-to "bin/doc-builder.js"
:target :nodejs #_:node-script
:optimizations :simple
:npm-deps {"puppeteer" "3.3.0"}
:install-deps true}}]})