Ari Perkkiö

Results 126 comments of Ari Perkkiö

Here is one example in details. Complete setup for inspecting the source maps of transpiled and instrumented code can be found at https://github.com/AriPerkkio/svelte-istanbul-reproduction, especially the [debug-svelte-sourcemaps.mjs](https://github.com/AriPerkkio/svelte-istanbul-reproduction/blob/main/debug-svelte-sourcemaps.mjs) part should reveal the...

I've updated the reproduction to use Svelte 5: https://github.com/AriPerkkio/svelte-istanbul-reproduction/blob/main/debug-svelte-sourcemaps.mjs It's definitely different. Maybe better but not perfect, e.g. line 17 is now excluded from source maps. _In the picture it...

I've run into this same error when using Jest and linking local NPM packages which have `react` as dependency. The linked packages were bringing their own copy of React into...

> This seems to be due to require.resolve returning the path relative to the configuration file, whereas when running in Cypress Versions

I have some kind of version of `prettyDOM` which supports `ShadowRoot`s in output. I only added the parts I needed at the time so it likely does not fulfill all...

I think I've run into similar issue when using Bun's `Worker`'s. This error message is being thrown and Bun crashes when memory leaks enough: ``` FATAL ERROR: JavaScript garbage collection...

Would it work if lines that are not present in source maps would be excluded from the report? There would be no need for AST. There's related PR in https://github.com/istanbuljs/v8-to-istanbul/pull/240...

> > * [line-parser.js](https://github.com/cenfun/monocart-formatter/blob/main/packages/formatter/lib/line-parser.js) Detecting blank lines > > * [comment-parser.js](https://github.com/cenfun/monocart-formatter/blob/main/packages/formatter/lib/comment-parser.js) Detecting comments for line parser > These implement comment detection by parsing the content characted-by-character? Handling all weird edge...

@frzyc I had the same issue with a fresh new repository. I have multiple older repositories which worked just fine. I was able to get the deployment working after checking...

I just ran into this myself. I have a [skip link](https://www.w3.org/TR/2016/NOTE-WCAG20-TECHS-20161007/G1) with `:not(:focus)` styles which breaks with this addon: ```scss .skipLink { position: absolute; left: 0; &:not(:focus) { @include mixins.visually-hidden;...