Add promesa (#38)

* Add promesa

* Add promesa
This commit is contained in:
Ray McDermott 2022-08-30 11:02:11 +02:00 committed by GitHub
parent 25e9ea61af
commit 7bf5bc087d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 0 deletions

View file

@ -1,5 +1,8 @@
# Changelog
## v0.2.9
- Add support for promesa
## v0.2.8
- Upgrade to SCI 0.3.1

View file

@ -8,6 +8,7 @@
cljsjs/react-dom {:mvn/version "17.0.2-0"}
cljsjs/react-dom-server {:mvn/version "17.0.2-0"}
cljs-ajax/cljs-ajax {:mvn/version "0.8.3"}
funcool/promesa {:mvn/version "8.0.450"}
io.github.babashka/sci.nrepl
#_{:local/root "../sci.nrepl"}

View file

@ -16,6 +16,8 @@
{:scittle {:entries [scittle.core]}
:scittle.nrepl {:entries [scittle.nrepl]
:depends-on #{:scittle}}
:scittle.promesa {:entries [scittle.promesa]
:depends-on #{:scittle}}
:scittle.reagent {:entries [scittle.reagent]
:depends-on #{:scittle}}
:scittle.cljs-ajax {:entries [scittle.cljs-ajax]

7
src/scittle/promesa.cljs Normal file
View file

@ -0,0 +1,7 @@
(ns scittle.promesa
(:require [scittle.core :as scittle]
[sci.configs.funcool.promesa :as p]))
(scittle/register-plugin!
::promesa
p/config)