Add dataspex plugin (#122)
This commit is contained in:
parent
9a83349d69
commit
f92e23d8f2
9 changed files with 35 additions and 4 deletions
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 :scittle.datascript}
|
||||
:entries [dataspex.core]}}}}]
|
||||
Loading…
Add table
Add a link
Reference in a new issue