-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
27 lines (26 loc) · 1.39 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
(defproject autojournal "0.1.0-SNAPSHOT"
:plugins [[lein-cljsbuild "1.1.7"]
[reifyhealth/lein-git-down "0.4.1"]
[lein-cljfmt "0.8.0"]]
:repositories [["public-github" {:url "git://github.com"}]]
:description "A tool for collecting life events into a single log."
:url "https://github.com/kovasap/autojournal-on-gas"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [
; These older versions of clojure and clojurescript are
; necessary for some reason with this build configuration. If
; I use the newer ones in shadow-cljs.edn, I get errors when I
; try to push to google apps script.
[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.439"]
[metosin/malli "0.8.4"]
[com.andrewmcveigh/cljs-time "0.5.2"]]
:cljsbuild {:builds [{
:source-paths ["src"]
:compiler {:main autojournal.core
:optimizations :whitespace
:output-to "./Code.js"
:output-dir "target"
:pretty-print true
:externs ["resources/gas.ext.js"]}}]})