Add dataspex
This commit is contained in:
parent
a6c2c382e9
commit
e2979fd394
4
plugins/dataspex/deps.edn
Normal file
4
plugins/dataspex/deps.edn
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{:deps
|
||||||
|
{no.cjohansen/dataspex {:git/url "https://github.com/cjohansen/dataspex"
|
||||||
|
:git/sha "02112200651c2bd932907bb69fba1ff50b881741"}
|
||||||
|
io.github.babashka/sci.configs {:git/sha "aa84a1b4f1fe45735e5b748769309fc842f737c1"}}}
|
9
plugins/dataspex/src/scittle/dataspex.cljs
Normal file
9
plugins/dataspex/src/scittle/dataspex.cljs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
(ns scittle.dataspex
|
||||||
|
{:no-doc true}
|
||||||
|
(:require [sci.configs.cjohansen.dataspex :refer [config]]
|
||||||
|
[scittle.core :as scittle]))
|
||||||
|
|
||||||
|
(defn init []
|
||||||
|
(scittle/register-plugin!
|
||||||
|
::dataspex
|
||||||
|
config))
|
8
plugins/dataspex/src/scittle_plugin.edn
Normal file
8
plugins/dataspex/src/scittle_plugin.edn
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[{:name scittle/dataspex
|
||||||
|
:namespaces [dataspex.core]
|
||||||
|
:js "./scittle.dataspex.js"
|
||||||
|
:shadow-config
|
||||||
|
{:modules
|
||||||
|
{:scittle.dataspex {:init-fn scittle.dataspex/init
|
||||||
|
:depends-on #{:scittle}
|
||||||
|
:entries [dataspex.core]}}}}]
|
Loading…
Reference in a new issue