-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
fix(nextjs): Fix requestAsyncStorageShim
path resolution on windows
#8875
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,6 @@ const pageWrapperTemplateCode = fs.readFileSync(pageWrapperTemplatePath, { encod | |
const middlewareWrapperTemplatePath = path.resolve(__dirname, '..', 'templates', 'middlewareWrapperTemplate.js'); | ||
const middlewareWrapperTemplateCode = fs.readFileSync(middlewareWrapperTemplatePath, { encoding: 'utf8' }); | ||
|
||
const requestAsyncStorageShimPath = path.resolve(__dirname, '..', 'templates', 'requestAsyncStorageShim.js'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. seeing that we have a few of these below, should we all replace them with an There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So this particular thing we're changing in this PR is actually something we let webpack import for us. All of the other paths in this file are actual templates we just call |
||
const requestAsyncStorageModuleExists = moduleExists(NEXTJS_REQUEST_ASYNC_STORAGE_MODULE_PATH); | ||
let showedMissingAsyncStorageModuleWarning = false; | ||
|
||
|
@@ -190,7 +189,10 @@ export default function wrappingLoader( | |
); | ||
showedMissingAsyncStorageModuleWarning = true; | ||
} | ||
templateCode = templateCode.replace(/__SENTRY_NEXTJS_REQUEST_ASYNC_STORAGE_SHIM__/g, requestAsyncStorageShimPath); | ||
templateCode = templateCode.replace( | ||
/__SENTRY_NEXTJS_REQUEST_ASYNC_STORAGE_SHIM__/g, | ||
'@sentry/nextjs/requestAsyncStorageShim', | ||
); | ||
} | ||
|
||
templateCode = templateCode.replace(/__ROUTE__/g, parameterizedPagesRoute.replace(/\\/g, '\\\\')); | ||
|
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.
Curious if this will cause any problems but given that tests pass, let's see 🤔
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.
we can never know... 😶🌫️
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.
We can check with https://arethetypeswrong.github.io/