Damien Maillard
Damien Maillard
When react is inside an iframe, chrome extension for react devtools fails to detect react. This is because the extension sets `__REACT_DEVTOOLS_GLOBAL_HOOK__` only on the top level window. Apparently it's...
Hello, there is an issue relative to urls when parcel bundle css files together. Urls found in files that gets bundled should be updated somehow because the following happens for...
### Context For some projects I would like to use rollup to benefit from tree-shaking and url hashing without generating chunks (disable concatenation of files). From my understanding `preserveModules` is...
It's possible to generate code where `_async` helper is not injected resulting in a `ReferenceError`. ```js function _await(value, then, direct) { if (direct) { return then ? then(value) : value;...
I would like to control the import path generated by this babel plugin. So that the import path produced can look as below: ```diff - import { _await } from...
Edit: This bug is on browser side, likely introduced by https://developer.chrome.com/blog/media-updates-in-chrome-63-64/#background-video-track-optimizations Chromium bug tracker: https://bugs.chromium.org/p/chromium/issues/detail?id=1432833 Firefox bug tracker: https://bugzilla.mozilla.org/show_bug.cgi?id=1828431 ### What version of Hls.js are you using? 1.3.4 ### What...
Hell there, I am merging two coverages: first come from v8 and was converted to istanbul format, second from istanbul itself. When I merge the two with the following code,...
### Why: I want to have a dynamic path depending on `runner.os` in a GitHub workflow. See https://github.com/microsoft/playwright/issues/7249 for the context. The documentation at https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/evaluate-expressions-in-workflows-and-actions helped me. However even with...
The following `package.json` ```json { "name": "package-name" } ``` And `index.js`: ```js import { foo } from "package-name"; ``` **Actual** `import-x/no-extraneous-dependencies` rule reports an error with the following message. ```console...
**Describe the feature you'd love to see** When an error is thrown from a setState callback, error boundaries don't catch it. **Example code** ```js import { h, render } from...