forked from yangyang5214/asciicast2mp4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
38 lines (33 loc) · 1.99 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 asciicast2gif "0.1.0-SNAPSHOT"
:description "asciinema GIF generator"
:url "http://example.com/FIXME"
:license {:name "MIT"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/clojurescript "1.10.238"]
[org.clojure/core.async "0.4.474"]
[prismatic/schema "1.1.6"]
[org.clojure/core.match "0.3.0-alpha4"]
[cljsjs/nodejs-externs "1.0.4-1"]
[reagent "0.7.0"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:source-paths ["src" "asciinema-player/src" "asciinema-player/vt/src"]
:resource-paths ["resources" "asciinema-player/resources" "asciinema-player/vt/resources"]
:clean-targets ^{:protect false} ["target" "main.js" "page/page.js"]
:cljsbuild {:builds {:main {:source-paths ["src"]
:compiler {:output-to "main.js"
:foreign-libs [{:file "codepoint-polyfill.js"
:provides ["asciinema.vt.codepoint-polyfill"]}]
:optimizations :advanced
:pretty-print false
:elide-asserts true
:target :nodejs
:externs ["externs/child_process.js"]
:main "asciinema.gif.main"}}
:page {:source-paths ["src"]
:compiler {:output-to "page/page.js"
:foreign-libs [{:file "codepoint-polyfill.js"
:provides ["asciinema.vt.codepoint-polyfill"]}]
:optimizations :advanced
:pretty-print false
:elide-asserts true
:main "asciinema.gif.page"}}}})