einarq

Results 48 comments of einarq

Feels like this might become a fairly large issue now the community starts moving towards React 18. We have around 10 apps sharing a design system header via MF, as...

I still get the same error after renaming the file to "tests.js" unfortunately :( On Sun, Apr 11, 2021 at 4:47 PM Cody Mikol ***@***.***> wrote: > I was just...

Ah, now I saw your update as well :)

As mentioned in the other issue, deleting the "browserslist" file solves the problem. It also works if I simplify it to just specify this for example: "last 2 Chrome versions"...

Actually, I was able to get it working by putting this in my karma.conf.js: ``` module.exports = function(config) { process.env.BROWSERSLIST = 'Chrome >= 80, Firefox >= 80, IE >= 11';...

Btw, part of the problem is probably that we use "split bundling" currently, to serve a modern bundle to those who are worthy :) Contents of "browserlist" file: ``` [modern]...

@peaceful-james Sorry, don't remember all the details, but I think the "fix" we did on our end was to add this to our karma config: target: 'browserslist:modern', @haakemon Isn't that...

We have a file called simply "browserslist" (not a dot file, no extension), and it looks like this: [modern] last 3 Chrome versions not Chrome < 60 last 3 Firefox...

It's a webpack option, so we put it on the weppack part of the karma.conf.js file: webpack: { mode: 'development', output: { publicPath: '/', }, cache: true, target: 'browserslist:modern', On...

Any news on this? Seeing the same thing after upgrading to Babel 7. In my case a lot of it (the hints not working) seems to be related to ignoring...