Simen Bekkhus
Simen Bekkhus
Not sure if there's an issue for it, but the cache misses in `vm.Script` that was mitigated in #50137 (released in 21.1.0) will resurface when vm modules are unflagged -...
As a workaround, it might be interesting to test out https://github.com/keplersj/jest-runner-prettier? Then you should be able to take advantage of Jest's parallelisation. EDIT: Seems like it doesn't have `--write`, should...
FWIW Jest's parallelization is implemented using https://yarnpkg.com/en/package/jest-worker. It supports both spawning processes and the new worker threads api (if available) and has a promise interface. Might be a good fit...
@nki2 Seems reasonable, but this broke quite a few tests. Could you take a look at them?
Hmm, ok, thanks or the detective work! Could you open an issue on stylint itself? The test changes looks fine (although you could use `chalk.stripColor` on the first one), but...
@nki2 Could you rebase on latest master?
I won't fix this bug in stylint until we've hit 2.0. So this is on hold for now
@jridgewell can you tell if we're making wrong assumptions about source map shape here?
No, we're waiting for upstream support. We've had lots of issues with added polyfills before, so I don't wanna add any more
Ended up with this solution which works fine: ```js {isScrolling ? ( ) : ( {items.slice(0, 10).map(i => ( {i.label} ))} )} ``` `isScrolling` being set if you press up...