This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-01
Channels
- # announcements (3)
- # babashka (17)
- # beginners (163)
- # bristol-clojurians (1)
- # calva (18)
- # chlorine-clover (17)
- # clj-kondo (13)
- # cljs-dev (50)
- # cljsjs (3)
- # cljsrn (13)
- # clojure (218)
- # clojure-dev (5)
- # clojure-europe (9)
- # clojure-italy (10)
- # clojure-nl (8)
- # clojure-uk (107)
- # clojurescript (25)
- # conjure (163)
- # cursive (63)
- # data-science (9)
- # datomic (38)
- # docker (1)
- # figwheel (34)
- # figwheel-main (3)
- # fulcro (15)
- # graalvm (1)
- # helix (12)
- # jobs (3)
- # juxt (5)
- # kaocha (3)
- # lein-figwheel (2)
- # leiningen (6)
- # luminus (2)
- # malli (1)
- # meander (12)
- # nrepl (4)
- # rdf (2)
- # re-frame (2)
- # reagent (7)
- # reitit (5)
- # remote-jobs (2)
- # rum (1)
- # shadow-cljs (65)
- # spacemacs (27)
- # tools-deps (18)
- # vim (19)
- # xtdb (2)
does anybody know if there exists a clojurescript distribution that can be loaded via a <script>
tag which will then execute the code in any <script type="application/clojurescript">
tags on the same page? like a zero-tooling distribution for beginners.
Transit CLJS supports metadata right? For some reason write-meta
doesn't seem to be doing anything
Damn, :transform
is not being called at all, am I doing something terribly wrong?
@adam678 there seems to be a strange issue with the cljs artifact - you need to explicitly state the transit-js dep to the latest in whatever dep tool you use
Woaw, that one was particularly tricky, works now
I blogged about how to package Clojurescript libraries which use npm - cross posting here from Clojureverse https://clojureverse.org/t/blog-how-to-package-clojurescript-libraries/5898. Any feedback appreciated 🙂
@adam678 it's looks like a PEBCAK on my end, @alexmiller is cutting a new release which should be fixed up
How can I use a function named "delete" from a foreign lib? I'm assuming I'm having problems due to it being a reserved keyword. Trying to use like (Auth/delete)
Is there a cljs test runner that works on emacs and not in the browser that offers good navigation between tests and simplifies information about which tests passed and which failed?l
what is a full list of all tags like number
here: (fn [x] (* ^number x 1))
that are handled by the CLJS compiler?
just number
there's a couple of cases where we can't infer where we don't say anything
for ease of interop/porting we do respect ^long
and ^double
but of course ^long
has no real meaning / effect