This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-08-31
Channels
- # announcements (1)
- # babashka (27)
- # beginners (107)
- # calva (2)
- # cider (1)
- # clara (1)
- # clj-kondo (17)
- # clojure (74)
- # clojure-europe (18)
- # clojure-nl (4)
- # clojure-norway (3)
- # clojure-spec (11)
- # clojure-uk (3)
- # clojurescript (10)
- # conjure (12)
- # datomic (4)
- # figwheel-main (1)
- # fulcro (28)
- # graalvm (11)
- # hugsql (12)
- # joker (1)
- # klipse (5)
- # malli (2)
- # meander (1)
- # membrane (9)
- # off-topic (26)
- # pedestal (6)
- # remote-jobs (1)
- # ring-swagger (5)
- # shadow-cljs (4)
- # test-check (14)
- # vrac (8)
- # xtdb (8)
I am noticing that a documentation site I previously made https://firemore.org/ is now having issues with pulling my github code. I am seeing the following error in my klipse window when I attempt to pull my projects source.
Pretty evident that I am pulling from http://viebel.github.io when I mean to be pulling from my project's github repo...
I am using data-external-libs
with this
</p><p></p><pre> <code class="language-klipse nohighlight" data-external-libs=""> (require '[firemore.core :as firemore]) </code> </pre><p>
I think this used to work, has the syntax for using data-external-libs
changed?I am getting the same behavior when I do local development, with the following code
<pre>
<code class="language-klipse" data-external-libs="">
(require '[firemore.core :as firemore])
</code>
</pre>
Smallest reproducing case. It seems like core.async is just having issues.
index.html
<link rel="stylesheet"
type="text/css"
href="">
<pre>
<code class="language-klipse">
(ns firemore.readme
(:require
[cljs.core.async :as async])
(:require-macros
[cljs.core.async.macros :refer [go-loop go]]))
(js/console.log "This works fine")
(go (js/console.log "This does not"))
</code>
</pre>
<script>
window.klipse_settings = {
// css selector the elements to klipsify
selector: '.language-klipse'
};
</script>
<script src=""></script>
OUTPUT
Unexpected error (Error) macroexpanding cljs.core.async.impl.ioc-macros$macros/aset-all! at (<cljs repl>:1:1).
Wrong number of args (5) passed to cljs.core.async.impl.ioc-macros$macros/aset-all!