mirror of
https://github.com/penpot/penpot.git
synced 2025-08-01 16:28:42 +02:00
✨ Move fressian to common module
This commit is contained in:
parent
ff00043811
commit
1d4bd34dfc
10 changed files with 36 additions and 37 deletions
|
@ -8,30 +8,23 @@
|
|||
(:require
|
||||
[app.common.data :as d]
|
||||
[app.common.exceptions :as ex]
|
||||
[app.common.fressian :as fres]
|
||||
[app.common.geom.matrix :as gmt]
|
||||
[app.common.logging :as l]
|
||||
[app.common.perf :as perf]
|
||||
[app.common.pprint :as pp]
|
||||
[app.common.schema :as sm]
|
||||
[app.common.schema.desc-js-like :as smdj]
|
||||
[app.common.schema.desc-native :as smdn]
|
||||
[app.common.schema.generators :as sg]
|
||||
[app.common.spec :as us]
|
||||
[app.common.transit :as t]
|
||||
[app.common.uuid :as uuid]
|
||||
[app.common.schema :as sm]
|
||||
[app.common.schema.generators :as sg]
|
||||
[app.common.schema.desc-native :as smdn]
|
||||
[app.common.schema.desc-js-like :as smdj]
|
||||
[app.config :as cfg]
|
||||
[app.main :as main]
|
||||
[malli.core :as m]
|
||||
[malli.error :as me]
|
||||
[malli.dev.pretty :as mdp]
|
||||
[malli.transform :as mt]
|
||||
[malli.util :as mu]
|
||||
[malli.registry :as mr]
|
||||
[malli.generator :as mg]
|
||||
[app.srepl.helpers]
|
||||
[app.srepl.main :as srepl]
|
||||
[app.util.blob :as blob]
|
||||
[app.util.fressian :as fres]
|
||||
[app.util.json :as json]
|
||||
[app.util.time :as dt]
|
||||
[clj-async-profiler.core :as prof]
|
||||
|
@ -48,7 +41,14 @@
|
|||
[criterium.core :as crit]
|
||||
[cuerdas.core :as str]
|
||||
[datoteka.core]
|
||||
[integrant.core :as ig]))
|
||||
[integrant.core :as ig]
|
||||
[malli.core :as m]
|
||||
[malli.dev.pretty :as mdp]
|
||||
[malli.error :as me]
|
||||
[malli.generator :as mg]
|
||||
[malli.registry :as mr]
|
||||
[malli.transform :as mt]
|
||||
[malli.util :as mu]))
|
||||
|
||||
(repl/disable-reload! (find-ns 'integrant.core))
|
||||
(set! *warn-on-reflection* true)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue