This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-04-14
Channels
- # ai (24)
- # announcements (36)
- # babashka (15)
- # babashka-sci-dev (8)
- # beginners (18)
- # biff (4)
- # calva (24)
- # cider (13)
- # clj-kondo (1)
- # clj-on-windows (2)
- # clojars (15)
- # clojure (120)
- # clojure-dev (13)
- # clojure-europe (69)
- # clojure-nl (1)
- # clojure-norway (8)
- # clojure-uk (2)
- # clojurescript (4)
- # core-logic (2)
- # cursive (6)
- # datomic (193)
- # dev-tooling (4)
- # emacs (1)
- # hyperfiddle (57)
- # lsp (56)
- # malli (11)
- # missionary (15)
- # nbb (61)
- # off-topic (8)
- # polylith (8)
- # practicalli (2)
- # proletarian (1)
- # reitit (3)
- # releases (2)
- # remote-jobs (1)
- # shadow-cljs (13)
- # spacemacs (1)
- # specter (2)
- # sql (17)
- # tools-deps (3)
- # vim (38)
TIL: Object.assign(this, GitHost.#gitHosts[type], ...
is valid Javascript code. I opened an issue because shadow-cljs closure compiler don't support it and it breaks compilation 😅
isnt # for private methods only? cant reproduce in nodejs
> let foo = {"#bar": {car: 42}}
> foo.#bar["car"]
foo.#bar["car"]
^
Uncaught SyntaxError: Private field '#bar' must be declared in an enclosing class
> Object.assign({}, foo.#bar["car"])
Object.assign({}, foo.#bar["car"])
^
So I've figured out how to break hot reloading on just one project? I get the little spinner in the corner of the browser window but it doesn't pick up any changes until I reload the page. The terminal output also always prints the same message about x number of files being compiled, even if I change nothing.
the usual ready message and it's calling my after-load hook but no changes come in
Should I be seeing network activity from the WS connection on each reload bc I am not
On my brand new M2 MBP, app watch
doesn’t seem to be picking up changes at times.. or if they do, its after a minute or two. Anything I should look at first? It has been working great until the last week or so.
which version? upgrade to latest if not. it has been a while since any changes to anything regarding this were made. but if you are on a really old version that might be the cause