0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 00:10:11 -05:00
penpot/exporter/shadow-cljs.edn
2020-10-23 15:17:18 +02:00

37 lines
899 B
Clojure

{:dependencies
[[funcool/promesa "6.0.0"]
[danlentz/clj-uuid "0.1.9"]
[funcool/cuerdas "2020.03.26-3"]
[lambdaisland/glogi "1.0.74"]
[metosin/reitit-core "0.5.9"]
[com.cognitect/transit-cljs "0.8.264"]
[frankiesardo/linked "1.3.0"]]
:source-paths ["src" "../common"]
:jvm-opts ["-Xmx512m" "-Xms512m"]
: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}}}}}