0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-07 15:39:42 -05:00
penpot/exporter/deps.edn
Andrey Antukh 4a9e38a221 ♻️ Refactor exporter
- Migrate from puppeteer to playwright
- Fix many lifecycle and resource usage issues
- Add redis integration
- Enable multiple exportation
- Enable asynchronos exportation (with progress reporting)
2022-03-22 11:34:32 +01:00

22 lines
596 B
Clojure

{:paths ["src" "vendor" "resources" "test"]
:deps
{penpot/common {:local/root "../common"}
binaryage/devtools {:mvn/version "RELEASE"}
metosin/reitit-core {:mvn/version "0.5.16"}
funcool/beicon {:mvn/version "2021.07.05-1"}
}
:aliases
{:outdated
{:extra-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}
;; org.slf4j/slf4j-nop {:mvn/version "RELEASE"}
}
:main-opts ["-m" "antq.core"]}
:dev
{:extra-deps
{thheller/shadow-cljs {:mvn/version "2.17.8"}}}
:shadow-cljs
{:main-opts ["-m" "shadow.cljs.devtools.cli"]}
}}