Antonin Hildebrand
Antonin Hildebrand
Here is the relevant config from dirac-sample project: https://github.com/binaryage/dirac-sample/blob/master/project.clj#L170-L196
I had no time to look into this yet. I believe you could achieve something similar with `String` object instead of using just plain js strings. The `String` object should...
Should be doable by providing alternative styling via config: https://github.com/binaryage/cljs-devtools/blob/4b40423b6d6532b95fd2e97fa900fefff576e8b6/src/lib/devtools/defaults.cljs#L225 Or maybe just overriding color table would be enough (not sure about background colors): https://github.com/binaryage/cljs-devtools/blob/4b40423b6d6532b95fd2e97fa900fefff576e8b6/src/lib/devtools/defaults.clj#L8 I'm personally not going to...
@timmywil I saw you forked the repo. I think maybe some background colors will be missing because I rely on defaults. Feel free to add new named colors or new...
Another tip (in case you were not aware): You can start chrome with `--remote-debugging-port` and then inspect DevTools instance with custom formatted output using another (independent) DevTools. This way you...
It would be really great if this could be an independent library from figwheel. I would like to spec and validate configs for my tools/libraries as well.
Yeah, this is something I had in mind but much more powerful: https://www.youtube.com/watch?v=c52QhiXsmyI
See this interesting development in shadow-cljs land: https://clojureverse.org/t/introducing-shadow-cljs-inspect/5012
I like your idea. But how do you think cljs-devtools could implement this without this feature being framework-specific?
Ok, thinking about this more. We could install `window.onerror` handler as we do with sanity hints[1] and do some magic there. But if "framework" catches the exceptions, we are out...