Eugene Ghanizadeh

Results 81 comments of Eugene Ghanizadeh

I am having a similar issue in TypeScript. It seems like in some environments and for some modules, the `"default"` key should be extracted from the module object. To see...

Yep `` component is for dynamic lists since explicitly known static lists do not need a specialized component, i.e. you basically want this: ```tsx ["1", "2", "3"].map(x => {x}) ```

@must could not replicate. could you elaborate more on replication scenario?

@must could you elaborate? as per my understanding you can do it now manually. do you mean all calls in a call-stack should be automatically watched? like the whole call-tree...

recording the whole call-tree would probably be a performance blow, so I would not consider it at least for this stage. this leaves the "recording a node multiple times in...

this would mean multiple automatic things happening at once (the output gets created, connected and even named automatically), which can be confusing.

the security issue does not affect codedoc (since we don't run any untrusted markdown), but yeah `@connectv/marked` does require an update generally.

I checked [your config file](https://github.com/TysonMN/tysonmn.github.io/blob/master/.codedoc/config.tsx) and it does not look like you have [configured GitHub integration](https://codedoc.cc/docs/config/misc#github-integration), which is necessary for the integrated search (it basically uses GitHub APIs).

The TOC is given the id `-codedoc-toc`, so you can style it via some [custom stylesheets](https://codedoc.cc/docs/config/page#scripts-and-stylesheets) like this: ```css #-codedoc-toc { width: ... } /** be sure to also provide...

@bender2k14 it would be really great if you could clone the cli code locally and investigate this issue a bit further. this should be particularly related to [this part of...