-
Notifications
You must be signed in to change notification settings - Fork 170
fix: createAssets fails in case of broken JSON in fetch cache #963
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: createAssets fails in case of broken JSON in fetch cache #963
Conversation
🦋 Changeset detectedLatest commit: ff07456 The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks!
We haven't heard anything from the Vercel team in a few days... so they seem pretty busy at the moment.
const cacheJson = files.json | ||
? safeParseJsonFile(fs.readFileSync(files.json, "utf8"), cacheFilePath) | ||
: undefined; | ||
if (!cacheFileMeta || !cacheJson) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is not correct meta does not exist for page router, doing that means that we are skipping any entry from page router.
You should do something like if ((files.meta && !cacheFileMeta) || (files.json && !cacheJson))
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the catch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @conico974, I confirm issue originated in App Router app and was tested only there. I've applied requested fix, please rereview.
commit: |
@grabmateusz Could you fix linting please. I'll merge once done |
MR closes #961