Tommy

Results 198 comments of Tommy

Just installed codemods (0.26.1) and I'm facing a similar error, although with `@babel/runtime-corejs2`. Maybe related? ``` Error: Cannot find module '@babel/runtime-corejs2/core-js/set' Require stack: - /Users/ccsdf/.volta/tools/image/packages/jest-codemodmods/lib/node_modules/jest-codemods/node_modules/pirates/lib/index.js:136:24) at Module._extensions..js (node:internal/modules/cjs/loader:1157:10) at Object.newLoader...

Looks like the option `normalizeFilenames` can resolve this by removing the auto generated name. But when I use the option, only the files having that generated id get reported. All...

The problem seems to be this line https://github.com/bundlewatch/bundlewatch/blob/476530ee7a499e55aaec37bdec8d6fc70454ecf9/src/app/getLocalFileDetails/index.js#L33 As if there's no group being found, `split` returns the whole path

Making my group optional in my regex kind of fixes the issue... But it makes the split function returning an undefined value and we do a replace on an undefined...

Looks like the issue arise only when installing `puppeteer` locally to the project (meaning it's inside the package.json dev dependencies), compared to installed globally. I'd prefer having puppeteer locally to...

Hi @davidchin , That is great you have an internal ticket to follow up on this issue. As you said, 100kb gzip is also too high for a library. Outside...

Hey @tj, Phantom provides a `rasterize.js` script giving more options for a better rendering. Using it should provide the pdf output :) See https://github.com/ariya/phantomjs/blob/master/examples/rasterize.js

Just got the same with `@keyframes` with this. Funny enough. This is problematic with v2, but not v1 ```scss @mixin keyframes($animationName) { @keyframes #{$animationName} { @content; } } ```

Hmm... I tried a couple things, I initially used `@swc/jest` and I tried with the `jest-preset-preact` to see if I had something wrong with my config, but both give me...