Added applied-science/js-interop plugin. (#101)
* Added applied-science/js-interop plugin. * Changelog update.
This commit is contained in:
parent
6359392c97
commit
df1e5a429a
|
@ -9,6 +9,8 @@
|
||||||
<!-- - Create Github release with updated links from `doc/links.md` -->
|
<!-- - Create Github release with updated links from `doc/links.md` -->
|
||||||
<!-- - `bb gh-pages` -->
|
<!-- - `bb gh-pages` -->
|
||||||
|
|
||||||
|
- [#102](https://github.com/babashka/scittle/issues/102): add `applied-science/js-interop` plugin.
|
||||||
|
|
||||||
## v0.6.22 (2024-12-19)
|
## v0.6.22 (2024-12-19)
|
||||||
|
|
||||||
- [#99](https://github.com/babashka/babashka/issues/99): make `js/import` work
|
- [#99](https://github.com/babashka/babashka/issues/99): make `js/import` work
|
||||||
|
|
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…
Reference in a new issue