Juho Teperi

Results 298 comments of Juho Teperi

> For example, suppose I want to extern an NPM package. Which files must I include during the externing process? NPM packages can't usually be consumed by browser as-is and...

Firebase package uses the externs from upstream package, probably a update removed one of the files referred by deps.cljs. Note that Shadow-cljs doesn't support Cljsjs packages: https://shadow-cljs.github.io/docs/UsersGuide.html#cljsjs though it can...

Did you try this normally, without cljs repl?

As @kennytilton wrote, on the first reaction run it sees the old `b` value, and it will then run a second time with the updated value. In this case, you...

If you use Html5History, this should work. The way fragment router work, it only considers the part after `#` and nothing before that. Sure it is valid URL, but from...

@everdimension AFAIK Most React components support `ref` so you should be able to use `` (or `[AnyComponent {:ref ref-fn}]`).

Tagging as wontfix, as this doesn't seem to be needed in near future. The function is still available and not deprecated in React 16. If we at some point change...

@ndroock1 Yes, that is the generator recommended by documentation: https://github.com/cljsjs/packages/wiki/Creating-Externs

I have some ideas that would make it possible to control rendering more, similar to https://github.com/rauhs/hicada. That wouldn't directly implement this, but would probably provide hooks for one to implement...