Andrew Bradley

Results 546 comments of Andrew Bradley
trafficstars

I started jotting down ideas in code. https://github.com/TypeStrong/typedoc-action If anything about this is wrong at all, wrong repo location, anything at all, please let me know. I find it helpful...

@Zamiell we haven't been focused on this lately, no. Personally I've been busy with #1634 and [TypeStrong/typedoc-auto-docs](https://github.com/TypeStrong/typedoc-auto-docs) If you feel like helping out, please don't hesitate to get involved and...

@Zamiell feel free to chat with us on Discord, too. There is a #typedoc channel. https://discord.gg/typescript

Here's how I tweaked the `wrapMatcher` function to handle promises. ``` const wrapMatcher = (matcher, customMessage) => { const newMatcher = (...args) => { try { return maybeWrapPromise(matcher(...args)); } catch(error)...

I believe that these issues are caused by the way ConEmu sends bytes to the target executable's stdin. When the ANSI sequences get split up over multiple `read()` calls, the...

@gussmith23 sorry I don't think I have it on-hand anymore.

I understand the desire for this, but it's a lot of added complexity and maintenance. The addition of globbing when node itself doesn't do that makes things dificult for us,...

> I'd like to apologize in case my request sounded demanding - that was not the intention. Don't worry, it did not sound demanding. > It works by resolving input...

I realized immediately after posting the above, that my `run()` example actually doesn't make sense. I'll think about it some more.

Maybe this is a better example: ```typescript import {run} from 'ts-node'; // Run node with TS support. ts-node will do all the necessary bootstrapping to make TS work await run({...