Jacob Hummer

Results 124 comments of Jacob Hummer

This is actually one of the reasons I wanted #57 😅

the `@defaultExport` tag (while it is unrecognized) gets auto-unCamelCased into "Default Export" which is _pretty close_ to the idea of a "(default)" badge-like thing. ```js /** * @defaultExport * Hello...

i tried the suggestion to use the .modifierTags and i still cant do it lol idk what im doing wrong https://stackblitz.com/edit/stackblitz-starters-yt7mhp the js ```js import { Application, Converter, Comment }...

i got something to appear! ![image](https://github.com/felipecrs/typedoc-plugin-rename-defaults/assets/61068799/63142d3a-0923-4382-a2d7-512b5455c77e) https://stackblitz.com/edit/stackblitz-starters-qfzmql?file=index.js js ```js import { Application, Converter, Comment, ReflectionFlag } from 'typedoc'; /** @param {Readonly} app */ export function load(app) { app.on(Application.EVENT_BOOTSTRAP_END, () =>...

this seems to work too and you can insert any text you want into it: ```js reflection.flags.push('goobledegook'); ``` https://stackblitz.com/edit/stackblitz-starters-23xcer?file=index.js ![image](https://github.com/felipecrs/typedoc-plugin-rename-defaults/assets/61068799/1807eca5-9ef5-4bbd-9185-740a531ce1e6) ![image](https://github.com/felipecrs/typedoc-plugin-rename-defaults/assets/61068799/76a21ea0-20f3-4817-af0f-88a7da1b39e1)

another trick i figured out is that you can override the `.kind` and set it to `ReflectionKind.Property` which effectively forces it to be **on the module index page** instead of...

can also do things with that magic badge stuff like this: ![image](https://github.com/felipecrs/typedoc-plugin-rename-defaults/assets/61068799/c4657fd4-fd79-43ca-9681-bc19a49bb83e) ![image](https://github.com/felipecrs/typedoc-plugin-rename-defaults/assets/61068799/86610177-004b-4804-af7f-f61a2da4970b) ![image](https://github.com/felipecrs/typedoc-plugin-rename-defaults/assets/61068799/02cdbc0c-9bd4-4f72-9604-d81a2ebc29c2)

Thanks for your detailed response! > The solution to 1 is easy, "just" compile all the llvm and binaryen programs to WebAssembly using Emscripten. A detail is that there's a...

In the build-llvm.sh script, there's this proxyfs.js thing; what is that? ![image](https://user-images.githubusercontent.com/61068799/222876621-2be98fa1-898b-4297-b3a6-03a53ca8e781.png) https://github.com/jprendes/emception/blob/366065547b1a59cb58011ed19aedce70c3bcbd2b/build-llvm.sh#L56

@jprendes What does the patch-ninja.sh script do? https://github.com/jprendes/emception/blob/master/patch-ninja.sh The gist that I was able to read from it is that it dynamically somehow creates a new llvm-box target in the...