Added applied-science/js-interop plugin.
This commit is contained in:
parent
6359392c97
commit
f8f12c4080
3 changed files with 11 additions and 0 deletions
1
deps.edn
1
deps.edn
|
|
@ -11,6 +11,7 @@
|
||||||
cljsjs/react-dom {:mvn/version "18.2.0-1"}
|
cljsjs/react-dom {:mvn/version "18.2.0-1"}
|
||||||
cljsjs/react-dom-server {:mvn/version "18.2.0-1"}
|
cljsjs/react-dom-server {:mvn/version "18.2.0-1"}
|
||||||
cljs-ajax/cljs-ajax {:mvn/version "0.8.4"}
|
cljs-ajax/cljs-ajax {:mvn/version "0.8.4"}
|
||||||
|
applied-science/js-interop {:mvn/version "0.4.2"}
|
||||||
funcool/promesa {:mvn/version "11.0.678"}
|
funcool/promesa {:mvn/version "11.0.678"}
|
||||||
io.github.babashka/sci.nrepl
|
io.github.babashka/sci.nrepl
|
||||||
#_{:local/root "../sci.nrepl"}
|
#_{:local/root "../sci.nrepl"}
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,8 @@
|
||||||
:depends-on #{:scittle}}
|
:depends-on #{:scittle}}
|
||||||
:scittle.promesa {:entries [scittle.promesa]
|
:scittle.promesa {:entries [scittle.promesa]
|
||||||
:depends-on #{:scittle}}
|
:depends-on #{:scittle}}
|
||||||
|
:scittle.js-interop {:entries [scittle.js-interop]
|
||||||
|
:depends-on #{:scittle}}
|
||||||
:scittle.pprint {:entries [scittle.pprint]
|
:scittle.pprint {:entries [scittle.pprint]
|
||||||
:depends-on #{:scittle}}
|
:depends-on #{:scittle}}
|
||||||
:scittle.reagent {:entries [scittle.reagent]
|
:scittle.reagent {:entries [scittle.reagent]
|
||||||
|
|
|
||||||
8
src/scittle/js_interop.cljs
Normal file
8
src/scittle/js_interop.cljs
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
(ns scittle.js-interop
|
||||||
|
(:require
|
||||||
|
[sci.configs.applied-science.js-interop :as j]
|
||||||
|
[scittle.core :as scittle]))
|
||||||
|
|
||||||
|
(scittle/register-plugin!
|
||||||
|
::js-interop
|
||||||
|
j/config)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue