forked from nextjournal/markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeps.edn
More file actions
54 lines (48 loc) · 2.42 KB
/
deps.edn
File metadata and controls
54 lines (48 loc) · 2.42 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{:paths ["src" "resources"]
:deps {applied-science/js-interop {:mvn/version "0.3.3"}
org.clojure/data.json {:mvn/version "2.4.0"}
io.github.clojure/tools.build {:mvn/version "0.10.3"}
io.github.slipset/deps-deploy {:git/url "https://github.com/slipset/deps-deploy.git"
:sha "b4359c5d67ca002d9ed0c4b41b710d7e5a82e3bf"}
org.graalvm.js/js {:mvn/version "21.3.2.1"}}
:aliases
{:nextjournal/clerk
{:extra-paths ["notebooks"]
:extra-deps {io.github.nextjournal/clerk {:git/sha "e8f275b5cf077ec9441e404c1885ff0b6ee0aef9"
:exclusions [io.github.nextjournal/markdown]}}
:jvm-opts ["-Dclojure.main.report=stderr"
"-Dclerk.resource_manifest={\"/js/viewer.js\" \"js/viewer.js\"}"] ;;
:exec-fn nextjournal.clerk/build!
:exec-args {:git/url "https://github.com/nextjournal/markdown"
:paths ["README.md"
"CHANGELOG.md"
"notebooks/try.clj"
"notebooks/images.clj"
"notebooks/pandoc.clj"
"notebooks/parsing_extensibility.clj"
"notebooks/benchmarks.clj"
"notebooks/tight_lists.clj"]}}
:quiet
{:jvm-opts ["-Dpolyglot.engine.WarnInterpreterOnly=false"]}
:test
{:extra-paths ["test"]
:extra-deps {nubank/matcher-combinators {:mvn/version "3.8.3"}}
:exec-fn test-runner/run}
:cljs-test
{:extra-paths ["test"]
:main-opts ["-m" "shadow.cljs.devtools.cli"]
:extra-deps {thheller/shadow-cljs {:mvn/version "2.18.0"}
nubank/matcher-combinators {:mvn/version "3.8.3"}}}
:sci
{:extra-paths ["sci"]
:main-opts ["-m" "shadow.cljs.devtools.cli"]
:jvm-opts ["-Dclerk.resource_manifest={\"/js/viewer.js\" \"http://localhost:8021/viewer.js\"}"]
:extra-deps {io.github.nextjournal/clerk.render {:git/url "https://github.com/nextjournal/clerk"
:git/sha "e8f275b5cf077ec9441e404c1885ff0b6ee0aef9"
:deps/root "render"}}}
:build
{:ns-default build
:deps {io.github.clojure/tools.build {:git/tag "v0.6.1" :git/sha "515b334"}
io.github.slipset/deps-deploy {:git/url "https://github.com/slipset/deps-deploy.git"
:sha "b4359c5d67ca002d9ed0c4b41b710d7e5a82e3bf"}
}}}}