This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
hi @borkdude, I need selmer.parser/resolve-arg
in babashka. Do you remember why it's not included?
Would it be ok to include it?
Context:
I am working on a template engine with bb and selmer.
I would like to add some handlers and resolve-arg
is needed for a tag handler that can convert some code to yaml .
resolve-arg uses filter-parser ns https://github.com/yogthos/Selmer/blob/master/src/selmer/filter_parser.clj .
filter-parser contains some usefull fn's - I had to implement my own strip-doublequotes
.
can you test with this binary? https://output.circle-artifacts.com/output/job/96bc9bc4-da69-4e9e-b2b0-47e75aeb4e50/artifacts/0/release/babashka-1.3.183-SNAPSHOT-linux-amd64.tar.gz
hi, this works. thanks Michiel ! I hope I don't need extra functions. If I do, I will try to implement them myself. Waiting for the release š
you can also install with:
bash <(curl ) --dev-build --dir /tmp
release will probably be somewhere this weekthanks. I am using the code with other people and it's going to be easier for them to use a release
yep, somewhere this week, I need to work through some other issues first before a new release
Hello (sorry by advance for the noobish questions), I'm trying to use websockets with babashka š. I saw that feature was recently added to https://github.com/babashka/http-client/blob/main/src/babashka/http_client/websocket.clj which seem to be included in bb š
ā¢ However I cannot import the namespace babashka.http-client.websocket
(importing babashka.http-client
is fine). Is Babashka only embedding a subset of the lib?
ā¢ I'm successfully using the "whole" library in my project, but I had to create a bb.edn
mentioning org.babashka/http-client
into deps and includes java in my Dockerfile. Is that the correct way to do so?
Edit: I saw the https://book.babashka.org/#built-in-namespaces, and it is only mentioning babashka.http-client
so I guess my first question have an answer š