This commit is contained in:
Michiel Borkent 2024-10-08 10:40:15 +02:00
parent a99cf25226
commit b91c78d972
3 changed files with 15 additions and 3 deletions

View file

@ -2,6 +2,18 @@
[Scittle](https://github.com/babashka/scittle): execute Clojure(Script) directly from browser script tags via SCI!
<!-- To create a new NPM release: -->
<!-- - Prepare version `package.json`, except patch (if anything should change here) -->
<!-- - Run `bb npm-publish`: this will compile, bump patch version, create tag and and push to npm and Github -->
<!-- - `bb replace-version 0.6.16 0.6.17` -->
<!-- - Create Github release with updated links from `doc/links.md` -->
<!-- - `bb gh-pages` -->
## v0.6.18 (2024-10-08)
- Add `cljs.pprint/code-dispatch` and `cljs.pprint/with-pprint-dispatch`
## v0.6.17 (2024-04-30)
- [#77](https://github.com/babashka/babashka/issues/77): make dependency on browser (`js/document`) optional so scittle can run in webworkers, Node.js, etc.

View file

@ -3,7 +3,7 @@
{org.clojure/clojure {:mvn/version "1.11.1"}
thheller/shadow-cljs {:mvn/version "2.20.15"}
org.babashka/sci {:git/url "https://github.com/babashka/sci"
:git/sha "bf6a0f1e00313a902c62c59e440266612725b926"}
:git/sha "bd4d6ba59d1224cb6c6bcccc4d6d37c96ea921b8"}
#_{:local/root "../babashka/sci"}
reagent/reagent {:mvn/version "1.1.1"}
re-frame/re-frame {:mvn/version "1.3.0"}
@ -19,7 +19,7 @@
io.github.babashka/sci.configs
#_{:local/root "/Users/borkdude/dev/sci.configs"}
{:git/url "https://github.com/babashka/sci.configs"
:git/sha "ffa88d796a3a2fe0a0fce332c6bf56f36b7c5cd7"}}
:git/sha "8253c69a537bcc82e8ff122e5f905fe9d1e303f0"}}
:aliases
{:dev
{:extra-paths ["dev"]

View file

@ -1,6 +1,6 @@
{
"name": "scittle",
"version": "0.6.17",
"version": "0.6.18",
"files": [
"dist"
],