This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-07-27
Channels
- # announcements (3)
- # babashka (16)
- # beginners (177)
- # calva (102)
- # cider (2)
- # clj-kondo (12)
- # clojars (10)
- # clojure (91)
- # clojure-argentina (3)
- # clojure-australia (5)
- # clojure-europe (16)
- # clojure-nl (1)
- # clojure-uk (10)
- # clojurescript (73)
- # community-development (8)
- # cursive (9)
- # depstar (7)
- # fulcro (5)
- # helix (1)
- # introduce-yourself (1)
- # jobs-discuss (18)
- # lsp (32)
- # luminus (1)
- # malli (2)
- # music (4)
- # off-topic (20)
- # pathom (19)
- # polylith (15)
- # re-frame (4)
- # reagent (6)
- # ring (13)
- # sci (36)
- # shadow-cljs (7)
- # spacemacs (4)
- # sql (3)
- # tools-deps (112)
- # vim (21)
Made a POC for a babashka like thing for nodeJS: https://github.com/borkdude/tbd Very much a "toy" thing right now, but perhaps it could be useful ;)
🎉 11
Hey! small thing tripped me up today re: tasks invocation
{:paths ["src"]
:tasks
{task-as-sym {:requires ([the-ns.example])
:task the-ns.example/run!}
task-as-shell (shell "bb -m the-ns/example.run!")}}
it's a CLI-ish task, so I was tripped up by the fact that bb task-as-sym
doesn't block and wait for input/completion, but bb task-as-shell
does
I bet there's a reason for it, but I wanted to share my little experience hiccup
you're exactly right
I was getting a ns-not-found error, so I added the require
but that was unrelated! (clojure n00b snake_case + kebab-case mixup)