Added applied-science/js-interop plugin. (#101)

* Added applied-science/js-interop plugin.

* Changelog update.
This commit is contained in:
Chris McCormick 2024-12-21 19:23:47 +00:00 committed by GitHub
parent 6359392c97
commit df1e5a429a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 13 additions and 0 deletions

View file

@ -9,6 +9,8 @@
<!-- - Create Github release with updated links from `doc/links.md` -->
<!-- - `bb gh-pages` -->
- [#102](https://github.com/babashka/scittle/issues/102): add `applied-science/js-interop` plugin.
## v0.6.22 (2024-12-19)
- [#99](https://github.com/babashka/babashka/issues/99): make `js/import` work

View file

@ -11,6 +11,7 @@
cljsjs/react-dom {: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"}
applied-science/js-interop {:mvn/version "0.4.2"}
funcool/promesa {:mvn/version "11.0.678"}
io.github.babashka/sci.nrepl
#_{:local/root "../sci.nrepl"}

View file

@ -18,6 +18,8 @@
:depends-on #{:scittle}}
:scittle.promesa {:entries [scittle.promesa]
:depends-on #{:scittle}}
:scittle.js-interop {:entries [scittle.js-interop]
:depends-on #{:scittle}}
:scittle.pprint {:entries [scittle.pprint]
:depends-on #{:scittle}}
:scittle.reagent {:entries [scittle.reagent]

View 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)