-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
36 lines (35 loc) · 1.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
(defproject co.datil/personas "1.0.3"
:description "Librería para validación de números de identificación de personas y compañías"
:url "https://developers.datil.co"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/clojurescript "1.10.516" :scope "provided"]]
:deploy-repositories {"releases" {:url "https://repo.clojars.org" :creds :gpg}}
:plugins [[lein-cljsbuild "1.1.7"]]
:clean-targets ^{:protect false}
[:target-path
[:cljsbuild :builds :app :compiler :output-dir]
[:cljsbuild :builds :app :compiler :output-to]]
:cljsbuild {:builds {
; :dev
; {:source-paths ["src" "test"]
; :target :nodejs
; :compiler
; {:main "personas.api"
; :output-to "target/js/lib.js"
; :output-dir "target/js/out"
; :asset-path "target/js/out"
; :source-map true
; :optimizations :none
; :pretty-print true}}
:release
{:source-paths ["src" "test"]
; :target :nodejs
; :main "personas.js"
:compiler
{:output-to "dist/js/personas.js"
:output-dir "dist/js/out"
:asset-path "/js"
:optimizations :advanced
:pretty-print false}}}})