Luke Page

Results 172 comments of Luke Page
trafficstars

I use Rollup, then delete node_modules, makes a big difference.

It took a bit of fiddling around and debugging. the biggest issue was node modules with circular dependencies - I had to exclude those.

FYI: this was merged into the TS main branch and then reverted because it can cause filter to convert any[] to unknown[] - which is not a issue for the...

Its underline in markdown, but possibly not stripping it because there is no matching (or maybe markdown requires whitespace before?)

The problem was introduced in https://github.com/quantizor/markdown-to-jsx/commit/1583486dd844b56e673d7551078b4b28e05a1b99 specifically this change: ![image](https://github.com/quantizor/markdown-to-jsx/assets/309321/29ec747e-4448-4ef8-8328-5d5565ff12c4) and adding these 3 lines seems to fix the problem: ``` if (typeA < typeB) { return -1; } ```...

Also, just to be ultra confusing, in index.cjs run through prettier: ![image](https://github.com/quantizor/markdown-to-jsx/assets/309321/a603bfa5-8e95-41d2-a6c4-9b30cf7d15e2) but in index.modern.js ![image](https://github.com/quantizor/markdown-to-jsx/assets/309321/8602d28f-9624-4eaa-8ae1-c96be07da94d) It looks like the latest 7.4.1 has been published with an out of date...

No, I was waiting to hear the correct fix. If you want me to I can but it will be tomorrow.

Our setup is we run screenshots for a branch and then in the pipeline, make sure one is kicked off or completed for the equivalent commit on master. Then once...

@garrett-wood did you get anywhere with this or find a work-around?

The docs you pointed at say this: > Prettier will also follow rules specified in the ".gitignore" file if it exists in the same directory from which it is run.