#Can't bump version to patch CVE

1 messages · Page 1 of 1 (latest)

faint valveBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)

past glacier
#

yeah that can happen when next hits a compile dead-lock after a version bump.
first thing i’d check is if there’s anything hanging in the route tree or a bad import loop.
you can run NEXT_DEBUG_COMPILATION=1 next dev to see where it stalls that usually points to the file that’s locking the compiler.
also try blowing out .next, node_modules, and the lockfile, then reinstall clean. stale react rc builds can get weird with minor next bumps.
if you can repro it in a small repo, even better that narrows it fast.

happy to take a look if you wanna share a snippet or a minimal repo.