-
SummaryHey! I'm experiencing an unusual issue with the NPM plugin 'baseline-browser-mapping'. A warning is appearing that shouldn't be there. This started happening about two days ago when I start the dev server or run a build in Next.js. Warning: Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 22 comments 27 replies
-
|
Investigating this as well, I got it on my personal project. Normally you'd get a warning every now and then, that you need to update your browserslist db, every now and then, but this doesn't look like the same issue. Adding some literature here:
Looks like the baseline-browser-mapping package does a literal time check against its last update (?), and if its more than 2 months it starts to print this warning... EDIT: Next.js already did a bump: #86625 which is included in 16.0.6 |
Beta Was this translation helpful? Give feedback.
-
|
I can confirm updating NextJs removes the warning. |
Beta Was this translation helpful? Give feedback.
-
|
What good timing for bumping next lol |
Beta Was this translation helpful? Give feedback.
-
|
this is really annoying, still not solved. it still keeps on, updating the package or not. |
Beta Was this translation helpful? Give feedback.
-
|
I can see it in 16.1.1
|
Beta Was this translation helpful? Give feedback.
-
this shit appears again latest nextjs
|
Beta Was this translation helpful? Give feedback.
-
|
same error |
Beta Was this translation helpful? Give feedback.
-
|
what is the real fix here? can this get unmarked as answered? its not resolved. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
hmm, Issue in latest version NEXTJS
|
Beta Was this translation helpful? Give feedback.
-
|
What's the status of this? |
Beta Was this translation helpful? Give feedback.
-
|
Update to |
Beta Was this translation helpful? Give feedback.
-
|
Can confirm this issue still appears in 16.1.6; tried updating the package then updating everything, to no avail. Very frustrating. I pride myself on an error-free workspace 😡 |
Beta Was this translation helpful? Give feedback.
-
|
If you're using PNPM, adding this to package.json fixes it for me {
// ...the rest of your config...
"pnpm": {
"overrides": {
"baseline-browser-mapping": "latest"
}
}
}I'm in a monorepo and I put it in the package.json in the root and fixes it everywhere. If you're not in a monorepo, I suspect you just put it in your lone package.json and it will fix it to. |
Beta Was this translation helpful? Give feedback.
-
|
@icyJoseph is there any kind of long term fix if we are using bun ? It seems to be fixed with an update but then a few days or weeks later we have it pop up again ? |
Beta Was this translation helpful? Give feedback.
-
|
Would love to see some clarity on what is best practice here. It pollutes the log. |
Beta Was this translation helpful? Give feedback.
-
|
Most of us literally do not care about browser mapping or can i use lite, there should be a way to disable logs or checks completely |
Beta Was this translation helpful? Give feedback.
-
|
OHHHHHHHH using over ride works with Bun just need to delete node mods and then Bun i |
Beta Was this translation helpful? Give feedback.
-
|
I used the |
Beta Was this translation helpful? Give feedback.
-
|
using bun, next 16.1.6, ran |
Beta Was this translation helpful? Give feedback.
-
|
As far as I know nothing keeps it away for long |
Beta Was this translation helpful? Give feedback.
-
|
Can confirm on npm specifically that finally 'npm i baseline-browser-mapping@latest -D' resolves the flag. |
Beta Was this translation helpful? Give feedback.





Investigating this as well, I got it on my personal project. Normally you'd get a warning every now and then, that you need to update your browserslist db, every now and then, but this doesn't look like the same issue.
Adding some literature here:
Looks like the baseline-browser-mapping package does a literal time check against its last update (?), and if its more than 2 months it starts to print this warning...
Upstreamissue I guess, let's track the conversation in web-platform-dx/baseline-browser-mapping#105EDIT: Next.js already did a bump: #86625 which is included in 16.0.6