Thai Pangsakulyanont
Thai Pangsakulyanont
Instead of generating the documentation model all in one phase, it is now split into 2 phases: 1. Doing a BFS of the module graph into a documentation tree. 2....
According to the talk [FaCSSt—CSS and Performance @ 39:35](https://youtu.be/2Rn8an74khk?t=39m35s) about loading CSS and JS, Example from the talk: ```html var script = document.createElement('script') script.src = '…' document.getElementByTagNames('head')[0].appendChild(script) ``` Since a...
When I installed `clojurescript`, I did not find `clojurescript/register` as said in the docs. It is available in `clojurescript/lib/register` instead.
I spent too much time than I would like to admit scratching my head to figure out why `.env.local` is not loaded during testing. It finally dawned on me when...
First, thanks for the extension! Made my life much more convenient. As I’m a user who prefers dark color schemes and certain font, I want to customize the CSS for...
https://github.com/qawolf/playwright-video/blob/58037692bfbd30c9e1a1a2b011488e1149400499/src/VideoWriter.ts#L48-L61 `fluent-ffmpeg` sends the `stdout` and `stderr`, so our error handler can accept this: ```diff - .on('error', (e) => { + .on('error', (e, stdout, stderr) => { ``` This helps...
I looked in the Issues board for `standard` and `eslint-config-standard` project but did not find anything related to this, so I decided to start a new issue. While [circular dependencies](https://en.wikipedia.org/wiki/Circular_dependency)...
## Summary I am trying to generate a doc model for a TypeScript library. I found that some names in the resulting documentation has `_2` added to it. ```ts /**...
## Summary I noticed that my CPU usage is unusually high whenever I open a Rush project inside VS Code without doing anything. ## Repro steps 1. Create a Rush...
### Self-service - [ ] I'd be willing to implement a fix ### Describe the bug Heroku’s Node.js buildpack is hardcoded to install packages using `yarn install --production=false` https://github.com/heroku/buildpacks-nodejs/blob/c6537360d8f4241d20118bacd04b0a43aea0bc6f/buildpacks/yarn/lib/build.sh#L82-L88 It...