Results 36 issues of Thomas Heller

Sorry for posting an image, didn't know how to show it otherwise. Note that I pressed auto-complete a couple of times and each time a goog.require is done. Using the...

Not sure if this is better suited for `cider`, `cider-nrepl` or here. A "Runtime" in CLJS is a JS engine that has loaded the compiled CLJS code and somehow connected...

There is a dynamic `set!` for a `goog-define` which makes the Closure compiler error out when compiling `cljs-test-display` in `:advanced` mode. It errors out with ``` --- cljs_test_display/core.cljs:411 illegal initialization...

Hey, just saw this in my Twitter feed. I recently spent some time with REPL related ideas myself and one of the key requirements for me is that I want...

question

There seems to be a mistake in your latest Article "riak-search-inline-fields", each basho_bench config only points at 3 nodes. ``` {riaksearch_remotenodes, ['[email protected]', '[email protected]', '[email protected]', '[email protected]']}. ``` Not sure how that...

Using `:app/native` for a build running in expo, lead to a `shadow-cljs watch for build :native not running!` error. Not quite sure why it lost the `app/` part. Should investigate....

Emits the original `importScripts("module.js")` name without the hash.

Currently `:external` only supports creating a singular output, which in a multi `:modules` builds prevents webpack from doing any code splitting at all. It should be possible to bridge webpack...

```clojure (defclass A (constructor [this] (js/console.log "A.constructor")) Object (whatever [this a b] (js/console.log "A.whatever" a b) (+ a b))) (defclass B (extends A) (constructor [this] (super) (js/console.log "B.constructor")) Object (whatever...

My test-workflow consists of running tests via a REPL, usually via `Run tests under caret in REPL` followed by several `Re-Run last test action in REPL`. Often I'm not editing...