0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-10 08:50:57 -05:00
penpot/exporter/shadow-cljs.edn
2021-05-04 14:34:27 +02:00

35 lines
926 B
Clojure

{:dependencies
[[funcool/promesa "6.0.0"]
[danlentz/clj-uuid "0.1.9"]
[funcool/cuerdas "2021.05.02-0"]
[lambdaisland/glogi "1.0.106"]
[metosin/reitit-core "0.5.13"]
[com.cognitect/transit-cljs "0.8.269"]
[frankiesardo/linked "1.3.0"]]
:source-paths ["src" "vendor" "../common"]
:jvm-opts ["-Xmx512m" "-Xms50m" "-XX:+UseSerialGC"]
:builds
{:main
{:target :node-script
:main app.core/main
:output-to "target/app.js"
:output-dir "target/app/"
:devtools {:before-load-async app.core/stop
:after-load app.core/start}
:compiler-options
{:output-feature-set :es8
:output-wrapper false}
:release
{:closure-defines {goog.debug.LOGGING_ENABLED true}
:compiler-options
{:fn-invoke-direct true
:source-map true
:optimizations :simple
:pseudo-names true
:pretty-print true
:anon-fn-naming-policy :off
:source-map-detail-level :all}}}}}