@sentry/nuxt 10.69.0 → 11.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/module.js +1 -3
- package/build/cjs/module.js.map +1 -1
- package/build/cjs/vite/addServerConfig.js +0 -4
- package/build/cjs/vite/addServerConfig.js.map +1 -1
- package/build/cjs/vite/orchestrion.js +9 -2
- package/build/cjs/vite/orchestrion.js.map +1 -1
- package/build/cjs/vite/sourceMaps.js +32 -46
- package/build/cjs/vite/sourceMaps.js.map +1 -1
- package/build/esm/module.js +1 -3
- package/build/esm/module.js.map +1 -1
- package/build/esm/package.json +1 -1
- package/build/esm/vite/addServerConfig.js +0 -4
- package/build/esm/vite/addServerConfig.js.map +1 -1
- package/build/esm/vite/orchestrion.js +9 -2
- package/build/esm/vite/orchestrion.js.map +1 -1
- package/build/esm/vite/sourceMaps.js +30 -44
- package/build/esm/vite/sourceMaps.js.map +1 -1
- package/build/module/common/types.d.ts +3 -168
- package/build/module/module.json +1 -1
- package/build/module/module.mjs +40 -53
- package/build/module/runtime/hooks/updateRouteBeforeResponse.js +3 -5
- package/build/module/runtime/hooks/wrapMiddlewareHandler.js +8 -4
- package/build/module/runtime/plugins/route-detector-legacy.server.js +4 -12
- package/build/module/runtime/plugins/route-detector.server.js +3 -13
- package/build/module/runtime/plugins/sentry-cloudflare.server.js +5 -2
- package/build/module/runtime/utils/instrumentStorage.js +27 -7
- package/build/module/vite/addServerConfig.d.ts +1 -1
- package/build/module/vite/orchestrion.d.ts +6 -1
- package/build/module/vite/sourceMaps.d.ts +2 -2
- package/build/types/common/types.d.ts +3 -168
- package/build/types/common/types.d.ts.map +1 -1
- package/build/types/index.types.d.ts +1 -0
- package/build/types/index.types.d.ts.map +1 -1
- package/build/types/module.d.ts.map +1 -1
- package/build/types/runtime/hooks/updateRouteBeforeResponse.d.ts.map +1 -1
- package/build/types/runtime/hooks/wrapMiddlewareHandler.d.ts.map +1 -1
- package/build/types/runtime/plugins/database-legacy.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/database.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/handler-legacy.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/handler.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/route-detector-legacy.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/route-detector.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/sentry-cloudflare.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/sentry.client.d.ts.map +1 -1
- package/build/types/runtime/plugins/sentry.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/storage-legacy.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/storage.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/update-route-name-legacy.server.d.ts.map +1 -1
- package/build/types/runtime/plugins/update-route-name.server.d.ts.map +1 -1
- package/build/types/runtime/utils/instrumentStorage.d.ts.map +1 -1
- package/build/types/vite/addServerConfig.d.ts +1 -1
- package/build/types/vite/orchestrion.d.ts +6 -1
- package/build/types/vite/orchestrion.d.ts.map +1 -1
- package/build/types/vite/sourceMaps.d.ts +2 -2
- package/build/types/vite/sourceMaps.d.ts.map +1 -1
- package/package.json +12 -13
package/build/esm/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sources":["../../src/module.ts"],"sourcesContent":["import {\n addPlugin,\n addPluginTemplate,\n addServerPlugin,\n addTemplate,\n addVitePlugin,\n createResolver,\n defineNuxtModule,\n} from '@nuxt/kit';\nimport { consoleSandbox } from '@sentry/core';\nimport * as path from 'path';\nimport type { SentryNuxtModuleOptions } from './common/types';\nimport { addDynamicImportEntryFileWrapper, addSentryTopImport, addServerConfigToBuild } from './vite/addServerConfig';\nimport { addDatabaseInstrumentation } from './vite/databaseConfig';\nimport { addMiddlewareImports, addMiddlewareInstrumentation } from './vite/middlewareConfig';\nimport { setupOrchestrion } from './vite/orchestrion';\nimport { setupSourceMaps } from './vite/sourceMaps';\nimport { addStorageInstrumentation } from './vite/storageConfig';\nimport { addOTelCommonJSImportAlias, findDefaultSdkInitFile, getNitroMajorVersion } from './vite/utils';\n\nexport type ModuleOptions = SentryNuxtModuleOptions;\ntype NuxtPageSubset = { file?: string; path: string };\n\nexport default defineNuxtModule<ModuleOptions>({\n meta: {\n name: '@sentry/nuxt/module',\n configKey: 'sentry',\n compatibility: {\n nuxt: '>=3.7.0',\n },\n },\n defaults: {},\n async setup(moduleOptionsParam, nuxt) {\n if (moduleOptionsParam?.enabled === false) {\n return;\n }\n\n const moduleOptions = {\n ...moduleOptionsParam,\n autoInjectServerSentry: moduleOptionsParam.autoInjectServerSentry,\n experimental_entrypointWrappedFunctions: moduleOptionsParam.experimental_entrypointWrappedFunctions || [\n 'default',\n 'handler',\n 'server',\n ],\n };\n\n const moduleDirResolver = createResolver(import.meta.url);\n const buildDirResolver = createResolver(nuxt.options.buildDir);\n\n const clientConfigFile = await findDefaultSdkInitFile('client', nuxt, moduleOptions);\n\n if (clientConfigFile) {\n // Inject the client-side Sentry config file with a side effect import\n addPluginTemplate({\n mode: 'client',\n filename: 'sentry-client-config.mjs',\n order: 0,\n\n // Dynamic import of config file to wrap it within a Nuxt context (here: defineNuxtPlugin)\n // Makes it possible to call useRuntimeConfig() in the user-defined sentry config file\n getContents: () => `\n import { defineNuxtPlugin } from \"#imports\";\n\n export default defineNuxtPlugin({\n name: 'sentry-client-config',\n async setup() {\n await import(\"${buildDirResolver.resolve(`/${clientConfigFile}`)}\")\n }\n });`,\n });\n\n // Add the plugin which loads client integrations etc. -\n // this must run after the sentry-client-config plugin has run, and the client is initialized!\n addPlugin({\n src: moduleDirResolver.resolve('./runtime/plugins/sentry.client'),\n mode: 'client',\n order: 1,\n });\n }\n\n const serverConfigFile = await findDefaultSdkInitFile('server', nuxt, moduleOptions);\n const isNitroV3 = (await getNitroMajorVersion()) >= 3;\n const nuxtMajor = parseInt((nuxt as unknown as { _version: string })._version?.split('.')[0] ?? '3', 10);\n const isMinNuxtV4 = nuxtMajor >= 4;\n\n if (serverConfigFile) {\n if (moduleOptions._experimental?.useDiagnosticsChannelInjection) {\n setupOrchestrion(nuxt);\n }\n\n if (isNitroV3) {\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/handler.server'));\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/update-route-name.server'));\n } else {\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/handler-legacy.server'));\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/update-route-name-legacy.server'));\n }\n\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/sentry.server'));\n\n if (isMinNuxtV4) {\n addPlugin({ src: moduleDirResolver.resolve('./runtime/plugins/route-detector.server'), mode: 'server' });\n } else {\n addPlugin({ src: moduleDirResolver.resolve('./runtime/plugins/route-detector-legacy.server'), mode: 'server' });\n }\n\n // Preps the middleware instrumentation module.\n addMiddlewareImports();\n addStorageInstrumentation(nuxt, !isNitroV3);\n addDatabaseInstrumentation(nuxt.options.nitro, !isNitroV3, moduleOptions);\n }\n\n if (clientConfigFile || serverConfigFile) {\n setupSourceMaps(moduleOptions, nuxt, addVitePlugin);\n }\n\n addOTelCommonJSImportAlias(nuxt, isNitroV3);\n\n let pagesData: NuxtPageSubset[] = [];\n\n nuxt.hooks.hook('pages:extend', pages => {\n pagesData = pages\n .map(page => ({ file: page.file, path: page.path }))\n .filter(page => {\n // Check for dynamic parameter (e.g., :userId or [userId])\n return page.path.includes(':') || page?.file?.includes('[');\n });\n });\n\n if (isMinNuxtV4) {\n const pagesDataVirtualModuleId = '#sentry/nuxt-pages-data.mjs';\n\n // Vite virtual plugin (for the Vite SSR build, where addPlugin mode:'server' plugins are bundled)\n addVitePlugin({\n name: 'sentry-nuxt-pages-data-virtual',\n resolveId: id => (id === pagesDataVirtualModuleId ? `\\0${pagesDataVirtualModuleId}` : null),\n load: id =>\n id === `\\0${pagesDataVirtualModuleId}` ? `export default ${JSON.stringify(pagesData, null, 2)};` : undefined,\n });\n } else {\n // Nuxt v3: register as a build template (accessible via #build/)\n addTemplate({\n filename: 'sentry--nuxt-pages-data.mjs',\n getContents: () => `export default ${JSON.stringify(pagesData, null, 2)};`,\n });\n }\n\n // Add the sentry config file to the include array\n nuxt.hook('prepare:types', options => {\n const tsConfig = options.tsConfig as { include?: string[] };\n\n if (!tsConfig.include) {\n tsConfig.include = [];\n }\n\n // Add type references for useRuntimeConfig in root files for nuxt v4\n // Should be relative to `root/.nuxt`\n if (clientConfigFile) {\n const relativePath = path.relative(nuxt.options.buildDir, clientConfigFile);\n tsConfig.include.push(relativePath);\n }\n if (serverConfigFile) {\n const relativePath = path.relative(nuxt.options.buildDir, serverConfigFile);\n tsConfig.include.push(relativePath);\n }\n });\n\n nuxt.hooks.hook('nitro:init', nitro => {\n if (nuxt.options?._prepare) {\n return;\n }\n\n if (serverConfigFile) {\n addMiddlewareInstrumentation(nitro);\n }\n\n if (serverConfigFile?.includes('.server.config')) {\n consoleSandbox(() => {\n const serverDir = nitro.options.output.serverDir;\n\n // Netlify env: https://docs.netlify.com/configure-builds/environment-variables/#build-metadata\n if (serverDir.includes('.netlify') || !!process.env.NETLIFY) {\n // eslint-disable-next-line no-console\n console.warn(\n '[Sentry] Warning: The Sentry SDK detected a Netlify build. Server-side support for the Sentry Nuxt SDK on Netlify is currently unreliable due to technical limitations of serverless functions. Traces are not collected, and errors may occasionally not be reported. For more information on setting up Sentry on the Nuxt server-side, please refer to the documentation: https://docs.sentry.io/platforms/javascript/guides/nuxt/install/',\n );\n }\n\n // Vercel env: https://vercel.com/docs/projects/environment-variables/system-environment-variables#VERCEL\n if (serverDir.includes('.vercel') || !!process.env.VERCEL) {\n // eslint-disable-next-line no-console\n console.warn(\n '[Sentry] Warning: The Sentry SDK detected a Vercel build. The Sentry Nuxt SDK currently does not support tracing on Vercel. For more information on setting up Sentry on the Nuxt server-side, please refer to the documentation: https://docs.sentry.io/platforms/javascript/guides/nuxt/install/',\n );\n }\n });\n\n if (moduleOptions.autoInjectServerSentry !== 'experimental_dynamic-import') {\n addServerConfigToBuild(moduleOptions, nitro, serverConfigFile);\n\n if (moduleOptions.debug) {\n const serverDirResolver = createResolver(nitro.options.output.serverDir);\n const serverConfigPath = serverDirResolver.resolve('sentry.server.config.mjs');\n\n // For the default nitro node-preset build output this relative path would be: ./.output/server/sentry.server.config.mjs\n const serverConfigRelativePath = `.${path.sep}${path.relative(nitro.options.rootDir, serverConfigPath)}`;\n\n consoleSandbox(() => {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] Using \\`${serverConfigFile}\\` for server-side Sentry configuration. To activate Sentry on the Nuxt server-side, this file must be preloaded when starting your application. Make sure to add this where you deploy and/or run your application. Read more here: https://docs.sentry.io/platforms/javascript/guides/nuxt/install/.`,\n );\n\n if (nitro.options.dev) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] During development, preload Sentry with the NODE_OPTIONS environment variable: \\`NODE_OPTIONS='--import ${serverConfigRelativePath}' nuxt dev\\`. The file is generated in the build directory (usually '.nuxt'). If you delete the build directory, run \\`nuxt dev\\` to regenerate it.`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] When running your built application, preload Sentry via a command-line flag (\\`node --import ${serverConfigRelativePath} [...]\\`) or via an environment variable (\\`NODE_OPTIONS='--import ${serverConfigRelativePath}' node [...]\\`).`,\n );\n }\n });\n }\n }\n\n if (moduleOptions.autoInjectServerSentry === 'top-level-import') {\n addSentryTopImport(moduleOptions, nitro);\n }\n\n if (moduleOptions.autoInjectServerSentry === 'experimental_dynamic-import') {\n addDynamicImportEntryFileWrapper(nitro, serverConfigFile, moduleOptions);\n\n if (moduleOptions.debug) {\n consoleSandbox(() => {\n // eslint-disable-next-line no-console\n console.log(\n '[Sentry] Wrapping the server entry file with a dynamic `import()`, so Sentry can be preloaded before the server initializes.',\n );\n });\n }\n }\n }\n });\n },\n});\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"module.js","sources":["../../src/module.ts"],"sourcesContent":["import {\n addPlugin,\n addPluginTemplate,\n addServerPlugin,\n addTemplate,\n addVitePlugin,\n createResolver,\n defineNuxtModule,\n} from '@nuxt/kit';\nimport { consoleSandbox } from '@sentry/core';\nimport * as path from 'path';\nimport type { SentryNuxtModuleOptions } from './common/types';\nimport { addDynamicImportEntryFileWrapper, addSentryTopImport, addServerConfigToBuild } from './vite/addServerConfig';\nimport { addDatabaseInstrumentation } from './vite/databaseConfig';\nimport { addMiddlewareImports, addMiddlewareInstrumentation } from './vite/middlewareConfig';\nimport { setupOrchestrion } from './vite/orchestrion';\nimport { setupSourceMaps } from './vite/sourceMaps';\nimport { addStorageInstrumentation } from './vite/storageConfig';\nimport { addOTelCommonJSImportAlias, findDefaultSdkInitFile, getNitroMajorVersion } from './vite/utils';\n\nexport type ModuleOptions = SentryNuxtModuleOptions;\ntype NuxtPageSubset = { file?: string; path: string };\n\nexport default defineNuxtModule<ModuleOptions>({\n meta: {\n name: '@sentry/nuxt/module',\n configKey: 'sentry',\n compatibility: {\n nuxt: '>=3.7.0',\n },\n },\n defaults: {},\n async setup(moduleOptionsParam, nuxt) {\n if (moduleOptionsParam?.enabled === false) {\n return;\n }\n\n const moduleOptions = {\n ...moduleOptionsParam,\n autoInjectServerSentry: moduleOptionsParam.autoInjectServerSentry,\n experimental_entrypointWrappedFunctions: moduleOptionsParam.experimental_entrypointWrappedFunctions || [\n 'default',\n 'handler',\n 'server',\n ],\n };\n\n const moduleDirResolver = createResolver(import.meta.url);\n const buildDirResolver = createResolver(nuxt.options.buildDir);\n\n const clientConfigFile = await findDefaultSdkInitFile('client', nuxt, moduleOptions);\n\n if (clientConfigFile) {\n // Inject the client-side Sentry config file with a side effect import\n addPluginTemplate({\n mode: 'client',\n filename: 'sentry-client-config.mjs',\n order: 0,\n\n // Dynamic import of config file to wrap it within a Nuxt context (here: defineNuxtPlugin)\n // Makes it possible to call useRuntimeConfig() in the user-defined sentry config file\n getContents: () => `\n import { defineNuxtPlugin } from \"#imports\";\n\n export default defineNuxtPlugin({\n name: 'sentry-client-config',\n async setup() {\n await import(\"${buildDirResolver.resolve(`/${clientConfigFile}`)}\")\n }\n });`,\n });\n\n // Add the plugin which loads client integrations etc. -\n // this must run after the sentry-client-config plugin has run, and the client is initialized!\n addPlugin({\n src: moduleDirResolver.resolve('./runtime/plugins/sentry.client'),\n mode: 'client',\n order: 1,\n });\n }\n\n const serverConfigFile = await findDefaultSdkInitFile('server', nuxt, moduleOptions);\n const isNitroV3 = (await getNitroMajorVersion()) >= 3;\n const nuxtMajor = parseInt((nuxt as unknown as { _version: string })._version?.split('.')[0] ?? '3', 10);\n const isMinNuxtV4 = nuxtMajor >= 4;\n\n // Orchestrion runs on both the Node path (gated on a server config file) and the Cloudflare path\n // (which has no server config file — the SDK is set up via `sentryCloudflareNitroPlugin`). The\n // Cloudflare detection happens inside, keyed off the resolved Nitro preset.\n setupOrchestrion(nuxt, !!serverConfigFile, moduleOptions.buildTimeInstrumentation);\n\n if (serverConfigFile) {\n if (isNitroV3) {\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/handler.server'));\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/update-route-name.server'));\n } else {\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/handler-legacy.server'));\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/update-route-name-legacy.server'));\n }\n\n addServerPlugin(moduleDirResolver.resolve('./runtime/plugins/sentry.server'));\n\n if (isMinNuxtV4) {\n addPlugin({ src: moduleDirResolver.resolve('./runtime/plugins/route-detector.server'), mode: 'server' });\n } else {\n addPlugin({ src: moduleDirResolver.resolve('./runtime/plugins/route-detector-legacy.server'), mode: 'server' });\n }\n\n // Preps the middleware instrumentation module.\n addMiddlewareImports();\n addStorageInstrumentation(nuxt, !isNitroV3);\n addDatabaseInstrumentation(nuxt.options.nitro, !isNitroV3, moduleOptions);\n }\n\n if (clientConfigFile || serverConfigFile) {\n setupSourceMaps(moduleOptions, nuxt, addVitePlugin);\n }\n\n addOTelCommonJSImportAlias(nuxt, isNitroV3);\n\n let pagesData: NuxtPageSubset[] = [];\n\n nuxt.hooks.hook('pages:extend', pages => {\n pagesData = pages\n .map(page => ({ file: page.file, path: page.path }))\n .filter(page => {\n // Check for dynamic parameter (e.g., :userId or [userId])\n return page.path.includes(':') || page?.file?.includes('[');\n });\n });\n\n if (isMinNuxtV4) {\n const pagesDataVirtualModuleId = '#sentry/nuxt-pages-data.mjs';\n\n // Vite virtual plugin (for the Vite SSR build, where addPlugin mode:'server' plugins are bundled)\n addVitePlugin({\n name: 'sentry-nuxt-pages-data-virtual',\n resolveId: id => (id === pagesDataVirtualModuleId ? `\\0${pagesDataVirtualModuleId}` : null),\n load: id =>\n id === `\\0${pagesDataVirtualModuleId}` ? `export default ${JSON.stringify(pagesData, null, 2)};` : undefined,\n });\n } else {\n // Nuxt v3: register as a build template (accessible via #build/)\n addTemplate({\n filename: 'sentry--nuxt-pages-data.mjs',\n getContents: () => `export default ${JSON.stringify(pagesData, null, 2)};`,\n });\n }\n\n // Add the sentry config file to the include array\n nuxt.hook('prepare:types', options => {\n const tsConfig = options.tsConfig as { include?: string[] };\n\n if (!tsConfig.include) {\n tsConfig.include = [];\n }\n\n // Add type references for useRuntimeConfig in root files for nuxt v4\n // Should be relative to `root/.nuxt`\n if (clientConfigFile) {\n const relativePath = path.relative(nuxt.options.buildDir, clientConfigFile);\n tsConfig.include.push(relativePath);\n }\n if (serverConfigFile) {\n const relativePath = path.relative(nuxt.options.buildDir, serverConfigFile);\n tsConfig.include.push(relativePath);\n }\n });\n\n nuxt.hooks.hook('nitro:init', nitro => {\n if (nuxt.options?._prepare) {\n return;\n }\n\n if (serverConfigFile) {\n addMiddlewareInstrumentation(nitro);\n }\n\n if (serverConfigFile?.includes('.server.config')) {\n consoleSandbox(() => {\n const serverDir = nitro.options.output.serverDir;\n\n // Netlify env: https://docs.netlify.com/configure-builds/environment-variables/#build-metadata\n if (serverDir.includes('.netlify') || !!process.env.NETLIFY) {\n // eslint-disable-next-line no-console\n console.warn(\n '[Sentry] Warning: The Sentry SDK detected a Netlify build. Server-side support for the Sentry Nuxt SDK on Netlify is currently unreliable due to technical limitations of serverless functions. Traces are not collected, and errors may occasionally not be reported. For more information on setting up Sentry on the Nuxt server-side, please refer to the documentation: https://docs.sentry.io/platforms/javascript/guides/nuxt/install/',\n );\n }\n\n // Vercel env: https://vercel.com/docs/projects/environment-variables/system-environment-variables#VERCEL\n if (serverDir.includes('.vercel') || !!process.env.VERCEL) {\n // eslint-disable-next-line no-console\n console.warn(\n '[Sentry] Warning: The Sentry SDK detected a Vercel build. The Sentry Nuxt SDK currently does not support tracing on Vercel. For more information on setting up Sentry on the Nuxt server-side, please refer to the documentation: https://docs.sentry.io/platforms/javascript/guides/nuxt/install/',\n );\n }\n });\n\n if (moduleOptions.autoInjectServerSentry !== 'experimental_dynamic-import') {\n addServerConfigToBuild(moduleOptions, nitro, serverConfigFile);\n\n if (moduleOptions.debug) {\n const serverDirResolver = createResolver(nitro.options.output.serverDir);\n const serverConfigPath = serverDirResolver.resolve('sentry.server.config.mjs');\n\n // For the default nitro node-preset build output this relative path would be: ./.output/server/sentry.server.config.mjs\n const serverConfigRelativePath = `.${path.sep}${path.relative(nitro.options.rootDir, serverConfigPath)}`;\n\n consoleSandbox(() => {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] Using \\`${serverConfigFile}\\` for server-side Sentry configuration. To activate Sentry on the Nuxt server-side, this file must be preloaded when starting your application. Make sure to add this where you deploy and/or run your application. Read more here: https://docs.sentry.io/platforms/javascript/guides/nuxt/install/.`,\n );\n\n if (nitro.options.dev) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] During development, preload Sentry with the NODE_OPTIONS environment variable: \\`NODE_OPTIONS='--import ${serverConfigRelativePath}' nuxt dev\\`. The file is generated in the build directory (usually '.nuxt'). If you delete the build directory, run \\`nuxt dev\\` to regenerate it.`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] When running your built application, preload Sentry via a command-line flag (\\`node --import ${serverConfigRelativePath} [...]\\`) or via an environment variable (\\`NODE_OPTIONS='--import ${serverConfigRelativePath}' node [...]\\`).`,\n );\n }\n });\n }\n }\n\n if (moduleOptions.autoInjectServerSentry === 'top-level-import') {\n addSentryTopImport(moduleOptions, nitro);\n }\n\n if (moduleOptions.autoInjectServerSentry === 'experimental_dynamic-import') {\n addDynamicImportEntryFileWrapper(nitro, serverConfigFile, moduleOptions);\n\n if (moduleOptions.debug) {\n consoleSandbox(() => {\n // eslint-disable-next-line no-console\n console.log(\n '[Sentry] Wrapping the server entry file with a dynamic `import()`, so Sentry can be preloaded before the server initializes.',\n );\n });\n }\n }\n }\n });\n },\n});\n"],"names":[],"mappings":"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"}
|
package/build/esm/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"type":"module","version":"
|
|
1
|
+
{"type":"module","version":"11.0.0-alpha.0"}
|
|
@@ -100,9 +100,6 @@ function wrapEntryWithDynamicImport({
|
|
|
100
100
|
if (source.includes(`/${SERVER_CONFIG_FILENAME}`)) {
|
|
101
101
|
return { id: source, moduleSideEffects: true };
|
|
102
102
|
}
|
|
103
|
-
if (source === "import-in-the-middle/hook.mjs") {
|
|
104
|
-
return { id: source, moduleSideEffects: true, external: true };
|
|
105
|
-
}
|
|
106
103
|
if (options.isEntry && source.includes(".mjs") && !source.includes(`.mjs${SENTRY_WRAPPED_ENTRY}`)) {
|
|
107
104
|
const resolution = await this.resolve(source, importer, options);
|
|
108
105
|
if (!resolution || resolution?.external) return resolution;
|
|
@@ -126,7 +123,6 @@ function wrapEntryWithDynamicImport({
|
|
|
126
123
|
// Regular `import` of the Sentry config
|
|
127
124
|
`import ${JSON.stringify(resolvedSentryConfigPath)};
|
|
128
125
|
import(${JSON.stringify(entryId)});
|
|
129
|
-
import 'import-in-the-middle/hook.mjs';
|
|
130
126
|
${reExportedFunctions}
|
|
131
127
|
`
|
|
132
128
|
);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addServerConfig.js","sources":["../../../src/vite/addServerConfig.ts"],"sourcesContent":["import { existsSync } from 'node:fs';\nimport { createResolver } from '@nuxt/kit';\nimport { debug } from '@sentry/core';\nimport * as fs from 'fs';\nimport type { Nitro } from 'nitropack';\nimport type { InputPluginOption } from 'rollup';\nimport type { SentryNuxtModuleOptions } from '../common/types';\nimport {\n constructFunctionReExport,\n constructWrappedFunctionExportQuery,\n getFilenameFromNodeStartCommand,\n QUERY_END_INDICATOR,\n removeSentryQueryFromPath,\n SENTRY_REEXPORTED_FUNCTIONS,\n SENTRY_WRAPPED_ENTRY,\n SENTRY_WRAPPED_FUNCTIONS,\n} from './utils';\n\nconst SERVER_CONFIG_FILENAME = 'sentry.server.config';\n\n/**\n * Adds the `sentry.server.config.ts` file as `sentry.server.config.mjs` to the `.output` directory to be able to reference this file in the node --import option.\n *\n * By adding a Rollup plugin to the Nitro Rollup options, the Sentry server config is transpiled and emitted to the server build.\n */\nexport function addServerConfigToBuild(\n moduleOptions: SentryNuxtModuleOptions,\n nitro: Nitro,\n serverConfigFile: string,\n): void {\n nitro.hooks.hook('rollup:before', (nitro, rollupConfig) => {\n if (rollupConfig?.plugins === null || rollupConfig?.plugins === undefined) {\n rollupConfig.plugins = [];\n } else if (!Array.isArray(rollupConfig.plugins)) {\n // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin\n rollupConfig.plugins = [rollupConfig.plugins];\n }\n\n rollupConfig.plugins.push(injectServerConfigPlugin(nitro, serverConfigFile, moduleOptions.debug));\n });\n}\n\n/**\n * Adds the Sentry server config import at the top of the server entry file to load the SDK on the server.\n * This is necessary for environments where modifying the node option `--import` is not possible.\n * However, only limited tracing instrumentation is supported when doing this.\n */\nexport function addSentryTopImport(moduleOptions: SentryNuxtModuleOptions, nitro: Nitro): void {\n nitro.hooks.hook('close', async () => {\n const fileNameFromCommand =\n nitro.options.commands.preview && getFilenameFromNodeStartCommand(nitro.options.commands.preview);\n\n // other presets ('node-server' or 'vercel') have an index.mjs\n const presetsWithServerFile = ['netlify'];\n\n const entryFileName = fileNameFromCommand\n ? fileNameFromCommand\n : typeof nitro.options.rollupConfig?.output.entryFileNames === 'string'\n ? nitro.options.rollupConfig?.output.entryFileNames\n : presetsWithServerFile.includes(nitro.options.preset)\n ? 'server.mjs'\n : 'index.mjs';\n\n const serverDirResolver = createResolver(nitro.options.output.serverDir);\n const entryFilePath = serverDirResolver.resolve(entryFileName);\n\n try {\n fs.readFile(entryFilePath, 'utf8', (err, data) => {\n const updatedContent = `import './${SERVER_CONFIG_FILENAME}.mjs';\\n${data}`;\n\n fs.writeFile(entryFilePath, updatedContent, 'utf8', () => {\n if (moduleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] Successfully added the Sentry import to the server entry file \"\\`${entryFilePath}\\`\"`,\n );\n }\n });\n });\n } catch (err) {\n if (moduleOptions.debug) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] An error occurred when trying to add the Sentry import to the server entry file \"\\`${entryFilePath}\\`\":`,\n err,\n );\n }\n }\n });\n}\n\n/**\n * This function modifies the Rollup configuration to include a plugin that wraps the entry file with a dynamic import (`import()`)\n * and adds the Sentry server config with the static `import` declaration.\n *\n * With this, the Sentry server config can be loaded before all other modules of the application (which is needed for import-in-the-middle).\n * See: https://nodejs.org/api/module.html#enabling\n */\nexport function addDynamicImportEntryFileWrapper(\n nitro: Nitro,\n serverConfigFile: string,\n moduleOptions: Omit<SentryNuxtModuleOptions, 'experimental_entrypointWrappedFunctions'> &\n Required<Pick<SentryNuxtModuleOptions, 'experimental_entrypointWrappedFunctions'>>,\n): void {\n if (!nitro.options.rollupConfig) {\n nitro.options.rollupConfig = { output: {} };\n }\n\n if (nitro.options.rollupConfig?.plugins === null || nitro.options.rollupConfig?.plugins === undefined) {\n nitro.options.rollupConfig.plugins = [];\n } else if (!Array.isArray(nitro.options.rollupConfig.plugins)) {\n // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin\n nitro.options.rollupConfig.plugins = [nitro.options.rollupConfig.plugins];\n }\n\n nitro.options.rollupConfig.plugins.push(\n wrapEntryWithDynamicImport({\n resolvedSentryConfigPath: createResolver(nitro.options.rootDir).resolve(`/${serverConfigFile}`),\n experimental_entrypointWrappedFunctions: moduleOptions.experimental_entrypointWrappedFunctions,\n }),\n );\n}\n\n/**\n * Rollup plugin to include the Sentry server configuration file to the server build output.\n */\nfunction injectServerConfigPlugin(nitro: Nitro, serverConfigFile: string, isDebug?: boolean): InputPluginOption {\n const filePrefix = '\\0virtual:sentry-server-config:';\n\n return {\n name: 'rollup-plugin-inject-sentry-server-config',\n\n buildStart() {\n const configPath = createResolver(nitro.options.rootDir).resolve(`/${serverConfigFile}`);\n\n if (!existsSync(configPath)) {\n if (isDebug) {\n debug.log(`[Sentry] Sentry server config file not found: ${configPath}`);\n }\n return;\n }\n\n // Emitting a file adds it to the build output (Rollup is aware of the file, and we can later return the code in resolveId)\n this.emitFile({\n type: 'chunk',\n id: `${filePrefix}${serverConfigFile}`,\n fileName: `${SERVER_CONFIG_FILENAME}.mjs`,\n });\n },\n\n resolveId(source) {\n if (source.startsWith(filePrefix)) {\n const originalFilePath = source.replace(filePrefix, '');\n const configPath = createResolver(nitro.options.rootDir).resolve(`/${originalFilePath}`);\n\n return { id: configPath };\n }\n return null;\n },\n };\n}\n\n/**\n * A Rollup plugin which wraps the server entry with a dynamic `import()`. This makes it possible to initialize Sentry first\n * by using a regular `import` and load the server after that.\n * This also works with serverless `handler` functions, as it re-exports the `handler`.\n */\nfunction wrapEntryWithDynamicImport({\n resolvedSentryConfigPath,\n experimental_entrypointWrappedFunctions,\n debug,\n}: {\n resolvedSentryConfigPath: string;\n experimental_entrypointWrappedFunctions: string[];\n debug?: boolean;\n}): InputPluginOption {\n // In order to correctly import the server config file\n // and dynamically import the nitro runtime, we need to\n // mark the resolutionId with '\\0raw' to fall into the\n // raw chunk group, c.f. https://github.com/nitrojs/nitro/commit/8b4a408231bdc222569a32ce109796a41eac4aa6#diff-e58102d2230f95ddeef2662957b48d847a6e891e354cfd0ae6e2e03ce848d1a2R142\n const resolutionIdPrefix = '\\0raw';\n\n return {\n name: 'sentry-wrap-entry-with-dynamic-import',\n async resolveId(source, importer, options) {\n if (source.includes(`/${SERVER_CONFIG_FILENAME}`)) {\n return { id: source, moduleSideEffects: true };\n }\n\n if (source === 'import-in-the-middle/hook.mjs') {\n // We are importing \"import-in-the-middle\" in the returned code of the `load()` function below\n // By setting `moduleSideEffects` to `true`, the import is added to the bundle, although nothing is imported from it\n // By importing \"import-in-the-middle/hook.mjs\", we can make sure this file is included, as not all node builders are including files imported with `module.register()`.\n // Prevents the error \"Failed to register ESM hook Error: Cannot find module 'import-in-the-middle/hook.mjs'\"\n return { id: source, moduleSideEffects: true, external: true };\n }\n\n if (options.isEntry && source.includes('.mjs') && !source.includes(`.mjs${SENTRY_WRAPPED_ENTRY}`)) {\n const resolution = await this.resolve(source, importer, options);\n\n // If it cannot be resolved or is external, just return it so that Rollup can display an error\n if (!resolution || resolution?.external) return resolution;\n\n const moduleInfo = await this.load(resolution);\n\n moduleInfo.moduleSideEffects = true;\n\n // The enclosing `if` already checks for the suffix in `source`, but a check in `resolution.id` is needed as well to prevent multiple attachment of the suffix\n return resolution.id.includes(`.mjs${SENTRY_WRAPPED_ENTRY}`)\n ? resolution.id\n : `${resolutionIdPrefix}${resolution.id\n // Concatenates the query params to mark the file (also attaches names of re-exports - this is needed for serverless functions to re-export the handler)\n .concat(SENTRY_WRAPPED_ENTRY)\n .concat(\n constructWrappedFunctionExportQuery(\n moduleInfo.exportedBindings,\n experimental_entrypointWrappedFunctions,\n debug,\n ),\n )\n .concat(QUERY_END_INDICATOR)}`;\n }\n return null;\n },\n load(id: string) {\n if (id.includes(`.mjs${SENTRY_WRAPPED_ENTRY}`)) {\n const entryId = removeSentryQueryFromPath(id).slice(resolutionIdPrefix.length);\n\n // Mostly useful for serverless `handler` functions\n const reExportedFunctions =\n id.includes(SENTRY_WRAPPED_FUNCTIONS) || id.includes(SENTRY_REEXPORTED_FUNCTIONS)\n ? constructFunctionReExport(id, entryId)\n : '';\n\n return (\n // Regular `import` of the Sentry config\n `import ${JSON.stringify(resolvedSentryConfigPath)};\\n` +\n // Dynamic `import()` for the previous, actual entry point.\n // `import()` can be used for any code that should be run after the hooks are registered (https://nodejs.org/api/module.html#enabling)\n `import(${JSON.stringify(entryId)});\\n` +\n // By importing \"import-in-the-middle/hook.mjs\", we can make sure this file wil be included, as not all node builders are including files imported with `module.register()`.\n \"import 'import-in-the-middle/hook.mjs';\\n\" +\n `${reExportedFunctions}\\n`\n );\n }\n\n return null;\n },\n };\n}\n"],"names":["nitro","debug"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"addServerConfig.js","sources":["../../../src/vite/addServerConfig.ts"],"sourcesContent":["import { existsSync } from 'node:fs';\nimport { createResolver } from '@nuxt/kit';\nimport { debug } from '@sentry/core';\nimport * as fs from 'fs';\nimport type { Nitro } from 'nitropack';\nimport type { InputPluginOption } from 'rollup';\nimport type { SentryNuxtModuleOptions } from '../common/types';\nimport {\n constructFunctionReExport,\n constructWrappedFunctionExportQuery,\n getFilenameFromNodeStartCommand,\n QUERY_END_INDICATOR,\n removeSentryQueryFromPath,\n SENTRY_REEXPORTED_FUNCTIONS,\n SENTRY_WRAPPED_ENTRY,\n SENTRY_WRAPPED_FUNCTIONS,\n} from './utils';\n\nconst SERVER_CONFIG_FILENAME = 'sentry.server.config';\n\n/**\n * Adds the `sentry.server.config.ts` file as `sentry.server.config.mjs` to the `.output` directory to be able to reference this file in the node --import option.\n *\n * By adding a Rollup plugin to the Nitro Rollup options, the Sentry server config is transpiled and emitted to the server build.\n */\nexport function addServerConfigToBuild(\n moduleOptions: SentryNuxtModuleOptions,\n nitro: Nitro,\n serverConfigFile: string,\n): void {\n nitro.hooks.hook('rollup:before', (nitro, rollupConfig) => {\n if (rollupConfig?.plugins === null || rollupConfig?.plugins === undefined) {\n rollupConfig.plugins = [];\n } else if (!Array.isArray(rollupConfig.plugins)) {\n // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin\n rollupConfig.plugins = [rollupConfig.plugins];\n }\n\n rollupConfig.plugins.push(injectServerConfigPlugin(nitro, serverConfigFile, moduleOptions.debug));\n });\n}\n\n/**\n * Adds the Sentry server config import at the top of the server entry file to load the SDK on the server.\n * This is necessary for environments where modifying the node option `--import` is not possible.\n * However, only limited tracing instrumentation is supported when doing this.\n */\nexport function addSentryTopImport(moduleOptions: SentryNuxtModuleOptions, nitro: Nitro): void {\n nitro.hooks.hook('close', async () => {\n const fileNameFromCommand =\n nitro.options.commands.preview && getFilenameFromNodeStartCommand(nitro.options.commands.preview);\n\n // other presets ('node-server' or 'vercel') have an index.mjs\n const presetsWithServerFile = ['netlify'];\n\n const entryFileName = fileNameFromCommand\n ? fileNameFromCommand\n : typeof nitro.options.rollupConfig?.output.entryFileNames === 'string'\n ? nitro.options.rollupConfig?.output.entryFileNames\n : presetsWithServerFile.includes(nitro.options.preset)\n ? 'server.mjs'\n : 'index.mjs';\n\n const serverDirResolver = createResolver(nitro.options.output.serverDir);\n const entryFilePath = serverDirResolver.resolve(entryFileName);\n\n try {\n fs.readFile(entryFilePath, 'utf8', (err, data) => {\n const updatedContent = `import './${SERVER_CONFIG_FILENAME}.mjs';\\n${data}`;\n\n fs.writeFile(entryFilePath, updatedContent, 'utf8', () => {\n if (moduleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] Successfully added the Sentry import to the server entry file \"\\`${entryFilePath}\\`\"`,\n );\n }\n });\n });\n } catch (err) {\n if (moduleOptions.debug) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] An error occurred when trying to add the Sentry import to the server entry file \"\\`${entryFilePath}\\`\":`,\n err,\n );\n }\n }\n });\n}\n\n/**\n * This function modifies the Rollup configuration to include a plugin that wraps the entry file with a dynamic import (`import()`)\n * and adds the Sentry server config with the static `import` declaration.\n *\n * With this, the Sentry server config can be loaded before all other modules of the application.\n * See: https://nodejs.org/api/module.html#enabling\n */\nexport function addDynamicImportEntryFileWrapper(\n nitro: Nitro,\n serverConfigFile: string,\n moduleOptions: Omit<SentryNuxtModuleOptions, 'experimental_entrypointWrappedFunctions'> &\n Required<Pick<SentryNuxtModuleOptions, 'experimental_entrypointWrappedFunctions'>>,\n): void {\n if (!nitro.options.rollupConfig) {\n nitro.options.rollupConfig = { output: {} };\n }\n\n if (nitro.options.rollupConfig?.plugins === null || nitro.options.rollupConfig?.plugins === undefined) {\n nitro.options.rollupConfig.plugins = [];\n } else if (!Array.isArray(nitro.options.rollupConfig.plugins)) {\n // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin\n nitro.options.rollupConfig.plugins = [nitro.options.rollupConfig.plugins];\n }\n\n nitro.options.rollupConfig.plugins.push(\n wrapEntryWithDynamicImport({\n resolvedSentryConfigPath: createResolver(nitro.options.rootDir).resolve(`/${serverConfigFile}`),\n experimental_entrypointWrappedFunctions: moduleOptions.experimental_entrypointWrappedFunctions,\n }),\n );\n}\n\n/**\n * Rollup plugin to include the Sentry server configuration file to the server build output.\n */\nfunction injectServerConfigPlugin(nitro: Nitro, serverConfigFile: string, isDebug?: boolean): InputPluginOption {\n const filePrefix = '\\0virtual:sentry-server-config:';\n\n return {\n name: 'rollup-plugin-inject-sentry-server-config',\n\n buildStart() {\n const configPath = createResolver(nitro.options.rootDir).resolve(`/${serverConfigFile}`);\n\n if (!existsSync(configPath)) {\n if (isDebug) {\n debug.log(`[Sentry] Sentry server config file not found: ${configPath}`);\n }\n return;\n }\n\n // Emitting a file adds it to the build output (Rollup is aware of the file, and we can later return the code in resolveId)\n this.emitFile({\n type: 'chunk',\n id: `${filePrefix}${serverConfigFile}`,\n fileName: `${SERVER_CONFIG_FILENAME}.mjs`,\n });\n },\n\n resolveId(source) {\n if (source.startsWith(filePrefix)) {\n const originalFilePath = source.replace(filePrefix, '');\n const configPath = createResolver(nitro.options.rootDir).resolve(`/${originalFilePath}`);\n\n return { id: configPath };\n }\n return null;\n },\n };\n}\n\n/**\n * A Rollup plugin which wraps the server entry with a dynamic `import()`. This makes it possible to initialize Sentry first\n * by using a regular `import` and load the server after that.\n * This also works with serverless `handler` functions, as it re-exports the `handler`.\n */\nfunction wrapEntryWithDynamicImport({\n resolvedSentryConfigPath,\n experimental_entrypointWrappedFunctions,\n debug,\n}: {\n resolvedSentryConfigPath: string;\n experimental_entrypointWrappedFunctions: string[];\n debug?: boolean;\n}): InputPluginOption {\n // In order to correctly import the server config file\n // and dynamically import the nitro runtime, we need to\n // mark the resolutionId with '\\0raw' to fall into the\n // raw chunk group, c.f. https://github.com/nitrojs/nitro/commit/8b4a408231bdc222569a32ce109796a41eac4aa6#diff-e58102d2230f95ddeef2662957b48d847a6e891e354cfd0ae6e2e03ce848d1a2R142\n const resolutionIdPrefix = '\\0raw';\n\n return {\n name: 'sentry-wrap-entry-with-dynamic-import',\n async resolveId(source, importer, options) {\n if (source.includes(`/${SERVER_CONFIG_FILENAME}`)) {\n return { id: source, moduleSideEffects: true };\n }\n\n if (options.isEntry && source.includes('.mjs') && !source.includes(`.mjs${SENTRY_WRAPPED_ENTRY}`)) {\n const resolution = await this.resolve(source, importer, options);\n\n // If it cannot be resolved or is external, just return it so that Rollup can display an error\n if (!resolution || resolution?.external) return resolution;\n\n const moduleInfo = await this.load(resolution);\n\n moduleInfo.moduleSideEffects = true;\n\n // The enclosing `if` already checks for the suffix in `source`, but a check in `resolution.id` is needed as well to prevent multiple attachment of the suffix\n return resolution.id.includes(`.mjs${SENTRY_WRAPPED_ENTRY}`)\n ? resolution.id\n : `${resolutionIdPrefix}${resolution.id\n // Concatenates the query params to mark the file (also attaches names of re-exports - this is needed for serverless functions to re-export the handler)\n .concat(SENTRY_WRAPPED_ENTRY)\n .concat(\n constructWrappedFunctionExportQuery(\n moduleInfo.exportedBindings,\n experimental_entrypointWrappedFunctions,\n debug,\n ),\n )\n .concat(QUERY_END_INDICATOR)}`;\n }\n return null;\n },\n load(id: string) {\n if (id.includes(`.mjs${SENTRY_WRAPPED_ENTRY}`)) {\n const entryId = removeSentryQueryFromPath(id).slice(resolutionIdPrefix.length);\n\n // Mostly useful for serverless `handler` functions\n const reExportedFunctions =\n id.includes(SENTRY_WRAPPED_FUNCTIONS) || id.includes(SENTRY_REEXPORTED_FUNCTIONS)\n ? constructFunctionReExport(id, entryId)\n : '';\n\n return (\n // Regular `import` of the Sentry config\n `import ${JSON.stringify(resolvedSentryConfigPath)};\\n` +\n // Dynamic `import()` for the previous, actual entry point.\n // `import()` can be used for any code that should be run after the hooks are registered (https://nodejs.org/api/module.html#enabling)\n `import(${JSON.stringify(entryId)});\\n` +\n `${reExportedFunctions}\\n`\n );\n }\n\n return null;\n },\n };\n}\n"],"names":["nitro","debug"],"mappings":"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"}
|
|
@@ -2,18 +2,25 @@ import { INSTRUMENTED_MODULE_NAMES } from '@sentry/server-utils/orchestrion/conf
|
|
|
2
2
|
import { sentryOrchestrionPlugin } from '@sentry/server-utils/orchestrion/rollup';
|
|
3
3
|
|
|
4
4
|
const IORedisDependencies = ["standard-as-callback"];
|
|
5
|
-
function setupOrchestrion(nuxt) {
|
|
5
|
+
function setupOrchestrion(nuxt, hasServerConfig, buildTimeInstrumentation) {
|
|
6
|
+
if (buildTimeInstrumentation === false) {
|
|
7
|
+
return;
|
|
8
|
+
}
|
|
6
9
|
nuxt.hook("nitro:config", (nitroConfig) => {
|
|
7
10
|
if (nuxt.options?._prepare) {
|
|
8
11
|
return;
|
|
9
12
|
}
|
|
13
|
+
const isCloudflare = !!nitroConfig.preset?.replace(/-/g, "_").startsWith("cloudflare");
|
|
14
|
+
if (!hasServerConfig && !isCloudflare) {
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
10
17
|
nitroConfig.rollupConfig ?? (nitroConfig.rollupConfig = {});
|
|
11
18
|
if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === void 0) {
|
|
12
19
|
nitroConfig.rollupConfig.plugins = [];
|
|
13
20
|
} else if (!Array.isArray(nitroConfig.rollupConfig.plugins)) {
|
|
14
21
|
nitroConfig.rollupConfig.plugins = [nitroConfig.rollupConfig.plugins];
|
|
15
22
|
}
|
|
16
|
-
nitroConfig.rollupConfig.plugins.push(sentryOrchestrionPlugin());
|
|
23
|
+
nitroConfig.rollupConfig.plugins.push(sentryOrchestrionPlugin({}));
|
|
17
24
|
const externals = nitroConfig.externals || (nitroConfig.externals = {});
|
|
18
25
|
const inline = externals.inline;
|
|
19
26
|
const existingInline = Array.isArray(inline) ? inline : inline ? [inline] : [];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"orchestrion.js","sources":["../../../src/vite/orchestrion.ts"],"sourcesContent":["import type { Nuxt } from '@nuxt/schema';\nimport { INSTRUMENTED_MODULE_NAMES } from '@sentry/server-utils/orchestrion/config';\nimport { sentryOrchestrionPlugin } from '@sentry/server-utils/orchestrion/rollup';\nimport type { NitroConfig } from 'nitropack';\n\n// ioredis requires this CommonJS helper to be bundled with it. Leaving it\n// external makes Nitro resolve the default export as a namespace object.\nconst IORedisDependencies = ['standard-as-callback'];\n\n/**\n * Configures Nitro to bundle and transform dependencies that publish tracing\n * events through diagnostics channels.\n */\nexport function setupOrchestrion(nuxt: Nuxt): void {\n nuxt.hook('nitro:config', (nitroConfig: NitroConfig) => {\n if (nuxt.options?._prepare) {\n return;\n }\n\n nitroConfig.rollupConfig ??= {};\n\n if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === undefined) {\n nitroConfig.rollupConfig.plugins = [];\n } else if (!Array.isArray(nitroConfig.rollupConfig.plugins)) {\n nitroConfig.rollupConfig.plugins = [nitroConfig.rollupConfig.plugins];\n }\n\n nitroConfig.rollupConfig.plugins.push(sentryOrchestrionPlugin());\n\n const externals = (nitroConfig.externals ||= {});\n const inline = externals.inline;\n const existingInline = Array.isArray(inline) ? inline : inline ? [inline] : [];\n externals.inline = [...new Set([...existingInline, ...INSTRUMENTED_MODULE_NAMES, ...IORedisDependencies])];\n });\n}\n"],"names":[],"mappings":";;;AAOA,MAAM,mBAAA,GAAsB,CAAC,sBAAsB,CAAA;
|
|
1
|
+
{"version":3,"file":"orchestrion.js","sources":["../../../src/vite/orchestrion.ts"],"sourcesContent":["import type { Nuxt } from '@nuxt/schema';\nimport { INSTRUMENTED_MODULE_NAMES } from '@sentry/server-utils/orchestrion/config';\nimport { sentryOrchestrionPlugin } from '@sentry/server-utils/orchestrion/rollup';\nimport type { NitroConfig } from 'nitropack';\n\n// ioredis requires this CommonJS helper to be bundled with it. Leaving it\n// external makes Nitro resolve the default export as a namespace object.\nconst IORedisDependencies = ['standard-as-callback'];\n\n/**\n * Configures Nitro to bundle and transform dependencies that publish tracing\n * events through diagnostics channels.\n *\n * `hasServerConfig` reflects whether a `sentry.server.config` file was found. On Node the SDK is\n * initialized from that file, so orchestrion only makes sense when it exists. On Cloudflare the SDK\n * is initialized through `sentryCloudflareNitroPlugin` instead (no server config file), so the\n * transform must still run there — detected via the Nitro preset.\n */\nexport function setupOrchestrion(nuxt: Nuxt, hasServerConfig: boolean, buildTimeInstrumentation?: boolean): void {\n if (buildTimeInstrumentation === false) {\n return;\n }\n\n nuxt.hook('nitro:config', (nitroConfig: NitroConfig) => {\n if (nuxt.options?._prepare) {\n return;\n }\n\n // On Cloudflare (workerd) the SDK is initialized through `sentryCloudflareNitroPlugin` (no\n // server config file), so the transform must still run there — detected via the Nitro preset.\n // Nitro normalizes preset names, so match any `cloudflare*` spelling.\n const isCloudflare = !!nitroConfig.preset?.replace(/-/g, '_').startsWith('cloudflare');\n\n if (!hasServerConfig && !isCloudflare) {\n return;\n }\n\n nitroConfig.rollupConfig ??= {};\n\n if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === undefined) {\n nitroConfig.rollupConfig.plugins = [];\n } else if (!Array.isArray(nitroConfig.rollupConfig.plugins)) {\n nitroConfig.rollupConfig.plugins = [nitroConfig.rollupConfig.plugins];\n }\n\n nitroConfig.rollupConfig.plugins.push(sentryOrchestrionPlugin({}));\n\n const externals = (nitroConfig.externals ||= {});\n const inline = externals.inline;\n const existingInline = Array.isArray(inline) ? inline : inline ? [inline] : [];\n externals.inline = [...new Set([...existingInline, ...INSTRUMENTED_MODULE_NAMES, ...IORedisDependencies])];\n });\n}\n"],"names":[],"mappings":";;;AAOA,MAAM,mBAAA,GAAsB,CAAC,sBAAsB,CAAA;AAW5C,SAAS,gBAAA,CAAiB,IAAA,EAAY,eAAA,EAA0B,wBAAA,EAA0C;AAC/G,EAAA,IAAI,6BAA6B,KAAA,EAAO;AACtC,IAAA;AAAA,EACF;AAEA,EAAA,IAAA,CAAK,IAAA,CAAK,cAAA,EAAgB,CAAC,WAAA,KAA6B;AACtD,IAAA,IAAI,IAAA,CAAK,SAAS,QAAA,EAAU;AAC1B,MAAA;AAAA,IACF;AAKA,IAAA,MAAM,YAAA,GAAe,CAAC,CAAC,WAAA,CAAY,MAAA,EAAQ,QAAQ,IAAA,EAAM,GAAG,CAAA,CAAE,UAAA,CAAW,YAAY,CAAA;AAErF,IAAA,IAAI,CAAC,eAAA,IAAmB,CAAC,YAAA,EAAc;AACrC,MAAA;AAAA,IACF;AAEA,IAAA,WAAA,CAAY,YAAA,KAAZ,WAAA,CAAY,YAAA,GAAiB,EAAC,CAAA;AAE9B,IAAA,IAAI,YAAY,YAAA,CAAa,OAAA,KAAY,QAAQ,WAAA,CAAY,YAAA,CAAa,YAAY,MAAA,EAAW;AAC/F,MAAA,WAAA,CAAY,YAAA,CAAa,UAAU,EAAC;AAAA,IACtC,WAAW,CAAC,KAAA,CAAM,QAAQ,WAAA,CAAY,YAAA,CAAa,OAAO,CAAA,EAAG;AAC3D,MAAA,WAAA,CAAY,YAAA,CAAa,OAAA,GAAU,CAAC,WAAA,CAAY,aAAa,OAAO,CAAA;AAAA,IACtE;AAEA,IAAA,WAAA,CAAY,aAAa,OAAA,CAAQ,IAAA,CAAK,uBAAA,CAAwB,EAAE,CAAC,CAAA;AAEjE,IAAA,MAAM,SAAA,GAAa,WAAA,CAAY,SAAA,KAAZ,WAAA,CAAY,YAAc,EAAC,CAAA;AAC9C,IAAA,MAAM,SAAS,SAAA,CAAU,MAAA;AACzB,IAAA,MAAM,cAAA,GAAiB,KAAA,CAAM,OAAA,CAAQ,MAAM,CAAA,GAAI,SAAS,MAAA,GAAS,CAAC,MAAM,CAAA,GAAI,EAAC;AAC7E,IAAA,SAAA,CAAU,MAAA,GAAS,CAAC,mBAAG,IAAI,GAAA,CAAI,CAAC,GAAG,cAAA,EAAgB,GAAG,yBAAA,EAA2B,GAAG,mBAAmB,CAAC,CAAC,CAAA;AAAA,EAC3G,CAAC,CAAA;AACH;;;;"}
|
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
import { sentryRollupPlugin } from '@sentry/rollup
|
|
2
|
-
import { sentryVitePlugin } from '@sentry/vite
|
|
1
|
+
import { sentryRollupPlugin } from '@sentry/bundler-plugins/rollup';
|
|
2
|
+
import { sentryVitePlugin } from '@sentry/bundler-plugins/vite';
|
|
3
3
|
import { validateSourceMapsOptionsPlugin } from './sentryVitePlugin.js';
|
|
4
4
|
|
|
5
5
|
function setupSourceMaps(moduleOptions, nuxt, addVitePlugin) {
|
|
6
6
|
const isDebug = moduleOptions.debug;
|
|
7
|
-
const
|
|
8
|
-
const sourceMapsEnabled = moduleOptions.sourcemaps?.disable === true ? false : moduleOptions.sourcemaps?.disable === false ? true : (
|
|
9
|
-
// eslint-disable-next-line typescript/no-deprecated
|
|
10
|
-
sourceMapsUploadOptions.enabled ?? true
|
|
11
|
-
);
|
|
7
|
+
const sourceMapsEnabled = moduleOptions.sourcemaps?.disable !== true;
|
|
12
8
|
const shouldDeleteFilesFallback = { client: true, server: true };
|
|
13
9
|
nuxt.hook("modules:done", () => {
|
|
14
10
|
if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {
|
|
@@ -17,8 +13,7 @@ function setupSourceMaps(moduleOptions, nuxt, addVitePlugin) {
|
|
|
17
13
|
shouldDeleteFilesFallback.server = previousSourceMapSettings.server === "unset";
|
|
18
14
|
if (isDebug && (shouldDeleteFilesFallback.client || shouldDeleteFilesFallback.server)) {
|
|
19
15
|
const enabledDeleteFallbacks = shouldDeleteFilesFallback.client && shouldDeleteFilesFallback.server ? "client-side and server-side" : shouldDeleteFilesFallback.server ? "server-side" : "client-side";
|
|
20
|
-
if (!moduleOptions.sourcemaps?.filesToDeleteAfterUpload
|
|
21
|
-
!sourceMapsUploadOptions.sourcemaps?.filesToDeleteAfterUpload) {
|
|
16
|
+
if (!moduleOptions.sourcemaps?.filesToDeleteAfterUpload) {
|
|
22
17
|
console.log(
|
|
23
18
|
`[Sentry] We enabled \`'hidden'\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be automatically deleted after uploading them to Sentry.`
|
|
24
19
|
);
|
|
@@ -63,44 +58,23 @@ function normalizePath(path) {
|
|
|
63
58
|
return path.replace(/^(\.\.\/)+/, "./");
|
|
64
59
|
}
|
|
65
60
|
function getPluginOptions(moduleOptions, shouldDeleteFilesFallback) {
|
|
66
|
-
const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};
|
|
67
|
-
const shouldDeleteFilesAfterUpload = shouldDeleteFilesFallback?.client || shouldDeleteFilesFallback?.server;
|
|
68
|
-
const fallbackFilesToDelete = [
|
|
69
|
-
...shouldDeleteFilesFallback?.client ? [".*/**/public/**/*.map"] : [],
|
|
70
|
-
...shouldDeleteFilesFallback?.server ? [".*/**/server/**/*.map", ".*/**/output/**/*.map", ".*/**/function/**/*.map"] : []
|
|
71
|
-
];
|
|
72
61
|
const sourcemapsOptions = moduleOptions.sourcemaps || {};
|
|
73
|
-
const
|
|
74
|
-
const filesToDeleteAfterUpload = sourcemapsOptions.filesToDeleteAfterUpload ?? // eslint-disable-next-line typescript/no-deprecated
|
|
75
|
-
deprecatedSourcemapsOptions.filesToDeleteAfterUpload;
|
|
76
|
-
if (typeof filesToDeleteAfterUpload === "undefined" && shouldDeleteFilesAfterUpload && moduleOptions.debug) {
|
|
77
|
-
console.log(
|
|
78
|
-
`[Sentry] Setting \`sentry.sourceMapsUploadOptions.sourcemaps.filesToDeleteAfterUpload: [${fallbackFilesToDelete.map((path) => `"${path}"`).join(", ")}]\` to delete generated source maps after they were uploaded to Sentry.`
|
|
79
|
-
);
|
|
80
|
-
}
|
|
62
|
+
const filesToDeleteAfterUpload = resolveFilesToDeleteAfterUpload(moduleOptions, shouldDeleteFilesFallback);
|
|
81
63
|
return {
|
|
82
64
|
applicationKey: moduleOptions.applicationKey,
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
authToken: moduleOptions.authToken ?? sourceMapsUploadOptions.authToken ?? process.env.SENTRY_AUTH_TOKEN,
|
|
89
|
-
// eslint-disable-next-line typescript/no-deprecated
|
|
90
|
-
telemetry: moduleOptions.telemetry ?? sourceMapsUploadOptions.telemetry ?? true,
|
|
91
|
-
// eslint-disable-next-line typescript/no-deprecated
|
|
92
|
-
url: moduleOptions.sentryUrl ?? sourceMapsUploadOptions.url ?? process.env.SENTRY_URL,
|
|
65
|
+
org: moduleOptions.org ?? process.env.SENTRY_ORG,
|
|
66
|
+
project: moduleOptions.project ?? process.env.SENTRY_PROJECT,
|
|
67
|
+
authToken: moduleOptions.authToken ?? process.env.SENTRY_AUTH_TOKEN,
|
|
68
|
+
telemetry: moduleOptions.telemetry ?? true,
|
|
69
|
+
url: moduleOptions.sentryUrl ?? process.env.SENTRY_URL,
|
|
93
70
|
headers: moduleOptions.headers,
|
|
94
71
|
debug: moduleOptions.debug ?? false,
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
// eslint-disable-next-line typescript/no-deprecated
|
|
98
|
-
errorHandler: moduleOptions.errorHandler ?? sourceMapsUploadOptions.errorHandler,
|
|
72
|
+
silent: moduleOptions.silent ?? false,
|
|
73
|
+
errorHandler: moduleOptions.errorHandler,
|
|
99
74
|
bundleSizeOptimizations: moduleOptions.bundleSizeOptimizations,
|
|
100
75
|
// todo: test if this can be overridden by the user
|
|
101
76
|
release: {
|
|
102
|
-
|
|
103
|
-
name: moduleOptions.release?.name ?? sourceMapsUploadOptions.release?.name,
|
|
77
|
+
name: moduleOptions.release?.name,
|
|
104
78
|
// Support all release options from BuildTimeOptionsBase
|
|
105
79
|
...moduleOptions.release,
|
|
106
80
|
...moduleOptions?.unstable_sentryBundlerPluginOptions?.release
|
|
@@ -116,16 +90,28 @@ function getPluginOptions(moduleOptions, shouldDeleteFilesFallback) {
|
|
|
116
90
|
// The server/client files are in different places depending on the nitro preset (e.g. '.output/server' or '.netlify/functions-internal/server')
|
|
117
91
|
// We cannot determine automatically how the build folder looks like (depends on the preset), so we have to accept that source maps are uploaded multiple times (with the vitePlugin for Nuxt and the rollupPlugin for Nitro).
|
|
118
92
|
// If we could know where the server/client assets are located, we could do something like this (based on the Nitro preset): isNitro ? ['./.output/server/**/*'] : ['./.output/public/**/*'],
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
ignore: sourcemapsOptions.ignore ?? deprecatedSourcemapsOptions.ignore ?? void 0,
|
|
123
|
-
filesToDeleteAfterUpload: filesToDeleteAfterUpload ? filesToDeleteAfterUpload : shouldDeleteFilesFallback?.server || shouldDeleteFilesFallback?.client ? fallbackFilesToDelete : void 0,
|
|
93
|
+
assets: sourcemapsOptions.assets ?? void 0,
|
|
94
|
+
ignore: sourcemapsOptions.ignore ?? void 0,
|
|
95
|
+
filesToDeleteAfterUpload,
|
|
124
96
|
rewriteSources: sourcemapsOptions.rewriteSources ?? normalizePath,
|
|
125
97
|
...moduleOptions?.unstable_sentryBundlerPluginOptions?.sourcemaps
|
|
126
98
|
}
|
|
127
99
|
};
|
|
128
100
|
}
|
|
101
|
+
function resolveFilesToDeleteAfterUpload(moduleOptions, shouldDeleteFilesFallback) {
|
|
102
|
+
const shouldDeleteFilesAfterUpload = shouldDeleteFilesFallback?.client || shouldDeleteFilesFallback?.server;
|
|
103
|
+
const fallbackFilesToDelete = [
|
|
104
|
+
...shouldDeleteFilesFallback?.client ? [".*/**/public/**/*.map"] : [],
|
|
105
|
+
...shouldDeleteFilesFallback?.server ? [".*/**/server/**/*.map", ".*/**/output/**/*.map", ".*/**/function/**/*.map"] : []
|
|
106
|
+
];
|
|
107
|
+
const filesToDeleteAfterUpload = moduleOptions.sourcemaps?.filesToDeleteAfterUpload;
|
|
108
|
+
if (typeof filesToDeleteAfterUpload === "undefined" && shouldDeleteFilesAfterUpload && moduleOptions.debug) {
|
|
109
|
+
console.log(
|
|
110
|
+
`[Sentry] Setting \`sentry.sourcemaps.filesToDeleteAfterUpload: [${fallbackFilesToDelete.map((path) => `"${path}"`).join(", ")}]\` to delete generated source maps after they were uploaded to Sentry.`
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
return filesToDeleteAfterUpload ? filesToDeleteAfterUpload : shouldDeleteFilesAfterUpload ? fallbackFilesToDelete : void 0;
|
|
114
|
+
}
|
|
129
115
|
function extractNuxtSourceMapSetting(nuxt, runtime) {
|
|
130
116
|
if (!runtime) {
|
|
131
117
|
return void 0;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sourceMaps.js","sources":["../../../src/vite/sourceMaps.ts"],"sourcesContent":["import type { Nuxt } from '@nuxt/schema';\nimport { sentryRollupPlugin, type SentryRollupPluginOptions } from '@sentry/rollup-plugin';\nimport { sentryVitePlugin, type SentryVitePluginOptions } from '@sentry/vite-plugin';\nimport type { NitroConfig } from 'nitropack';\nimport type { Plugin } from 'vite';\nimport type { SentryNuxtModuleOptions } from '../common/types';\nimport { validateSourceMapsOptionsPlugin } from './sentryVitePlugin';\n\n/**\n * Whether the user enabled (true, 'hidden', 'inline') or disabled (false) source maps\n */\nexport type UserSourceMapSetting = 'enabled' | 'disabled' | 'unset' | undefined;\n\n/** A valid source map setting */\nexport type SourceMapSetting = boolean | 'hidden' | 'inline';\n\n/**\n * Setup source maps for Sentry inside the Nuxt module during build time (in Vite for Nuxt and Rollup for Nitro).\n */\nexport function setupSourceMaps(\n moduleOptions: SentryNuxtModuleOptions,\n nuxt: Nuxt,\n addVitePlugin: (plugin: Plugin[], options?: { dev?: boolean; build?: boolean }) => void,\n): void {\n // TODO(v11): remove deprecated options (also from SentryNuxtModuleOptions type)\n\n const isDebug = moduleOptions.debug;\n\n // eslint-disable-next-line typescript/no-deprecated\n const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};\n\n const sourceMapsEnabled =\n moduleOptions.sourcemaps?.disable === true\n ? false\n : moduleOptions.sourcemaps?.disable === false\n ? true\n : // eslint-disable-next-line typescript/no-deprecated\n (sourceMapsUploadOptions.enabled ?? true);\n\n // In case we overwrite the source map settings, we default to deleting the files\n const shouldDeleteFilesFallback = { client: true, server: true };\n\n nuxt.hook('modules:done', () => {\n if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {\n // Changing this setting will propagate:\n // - for client to viteConfig.build.sourceMap\n // - for server to viteConfig.build.sourceMap and nitro.sourceMap\n // On server, nitro.rollupConfig.output.sourcemap remains unaffected from this change.\n\n // ONLY THIS nuxt.sourcemap.(server/client) setting is the one Sentry will overwrite with 'hidden', if needed.\n const previousSourceMapSettings = changeNuxtSourceMapSettings(nuxt, moduleOptions);\n\n // Mutate in place so the Vite plugin (which captured this object at registration time) sees the updated values\n shouldDeleteFilesFallback.client = previousSourceMapSettings.client === 'unset';\n shouldDeleteFilesFallback.server = previousSourceMapSettings.server === 'unset';\n\n if (isDebug && (shouldDeleteFilesFallback.client || shouldDeleteFilesFallback.server)) {\n const enabledDeleteFallbacks =\n shouldDeleteFilesFallback.client && shouldDeleteFilesFallback.server\n ? 'client-side and server-side'\n : shouldDeleteFilesFallback.server\n ? 'server-side'\n : 'client-side';\n\n if (\n !moduleOptions.sourcemaps?.filesToDeleteAfterUpload &&\n // eslint-disable-next-line typescript/no-deprecated\n !sourceMapsUploadOptions.sourcemaps?.filesToDeleteAfterUpload\n ) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] We enabled \\`'hidden'\\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be automatically deleted after uploading them to Sentry.`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] We enabled \\`'hidden'\\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be deleted according to your \\`sourcemaps.filesToDeleteAfterUpload\\` configuration. To use automatic deletion instead, leave \\`filesToDeleteAfterUpload\\` empty.`,\n );\n }\n }\n }\n });\n\n if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {\n addVitePlugin(\n [\n validateSourceMapsOptionsPlugin({ nuxt, moduleOptions, sourceMapsEnabled }),\n // Vite plugin is added on the client and server side (plugin runs for both builds)\n ...sentryVitePlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),\n ],\n { dev: false, build: true }, // Only add source map plugin during build\n );\n }\n\n nuxt.hook('nitro:config', (nitroConfig: NitroConfig) => {\n if (sourceMapsEnabled && !nitroConfig.dev && !nuxt.options?._prepare) {\n nitroConfig.rollupConfig ??= {};\n\n if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === undefined) {\n nitroConfig.rollupConfig.plugins = [];\n } else if (!Array.isArray(nitroConfig.rollupConfig.plugins)) {\n // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin\n nitroConfig.rollupConfig.plugins = [nitroConfig.rollupConfig.plugins];\n }\n\n validateNitroSourceMapSettings(nuxt, nitroConfig, moduleOptions);\n\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.log('[Sentry] Adding Sentry Rollup plugin to the server runtime.');\n }\n\n // Add Sentry plugin\n // Runs only on server-side (Nitro)\n nitroConfig.rollupConfig.plugins.push(\n sentryRollupPlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),\n );\n }\n });\n}\n\n/**\n * Normalizes the beginning of a path from e.g. ../../../ to ./\n */\nfunction normalizePath(path: string): string {\n return path.replace(/^(\\.\\.\\/)+/, './');\n}\n\n/**\n * Generates source maps upload options for the Sentry Vite and Rollup plugin.\n *\n * Only exported for Testing purposes.\n */\n// todo(v11): This \"eslint-disable\" can be removed again once we remove deprecated options.\n// eslint-disable-next-line complexity\nexport function getPluginOptions(\n moduleOptions: SentryNuxtModuleOptions,\n shouldDeleteFilesFallback?: { client: boolean; server: boolean },\n): SentryVitePluginOptions | SentryRollupPluginOptions {\n // eslint-disable-next-line typescript/no-deprecated\n const sourceMapsUploadOptions = moduleOptions.sourceMapsUploadOptions || {};\n\n const shouldDeleteFilesAfterUpload = shouldDeleteFilesFallback?.client || shouldDeleteFilesFallback?.server;\n const fallbackFilesToDelete = [\n ...(shouldDeleteFilesFallback?.client ? ['.*/**/public/**/*.map'] : []),\n ...(shouldDeleteFilesFallback?.server\n ? ['.*/**/server/**/*.map', '.*/**/output/**/*.map', '.*/**/function/**/*.map']\n : []),\n ];\n\n // Check for filesToDeleteAfterUpload in new location first, then deprecated location\n const sourcemapsOptions = moduleOptions.sourcemaps || {};\n // eslint-disable-next-line typescript/no-deprecated\n const deprecatedSourcemapsOptions = sourceMapsUploadOptions.sourcemaps || {};\n\n const filesToDeleteAfterUpload =\n sourcemapsOptions.filesToDeleteAfterUpload ??\n // eslint-disable-next-line typescript/no-deprecated\n deprecatedSourcemapsOptions.filesToDeleteAfterUpload;\n\n if (typeof filesToDeleteAfterUpload === 'undefined' && shouldDeleteFilesAfterUpload && moduleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] Setting \\`sentry.sourceMapsUploadOptions.sourcemaps.filesToDeleteAfterUpload: [${fallbackFilesToDelete\n // Logging it as strings in the array\n .map(path => `\"${path}\"`)\n .join(', ')}]\\` to delete generated source maps after they were uploaded to Sentry.`,\n );\n }\n\n return {\n applicationKey: moduleOptions.applicationKey,\n // eslint-disable-next-line typescript/no-deprecated\n org: moduleOptions.org ?? sourceMapsUploadOptions.org ?? process.env.SENTRY_ORG,\n // eslint-disable-next-line typescript/no-deprecated\n project: moduleOptions.project ?? sourceMapsUploadOptions.project ?? process.env.SENTRY_PROJECT,\n // eslint-disable-next-line typescript/no-deprecated\n authToken: moduleOptions.authToken ?? sourceMapsUploadOptions.authToken ?? process.env.SENTRY_AUTH_TOKEN,\n // eslint-disable-next-line typescript/no-deprecated\n telemetry: moduleOptions.telemetry ?? sourceMapsUploadOptions.telemetry ?? true,\n // eslint-disable-next-line typescript/no-deprecated\n url: moduleOptions.sentryUrl ?? sourceMapsUploadOptions.url ?? process.env.SENTRY_URL,\n headers: moduleOptions.headers,\n debug: moduleOptions.debug ?? false,\n // eslint-disable-next-line typescript/no-deprecated\n silent: moduleOptions.silent ?? sourceMapsUploadOptions.silent ?? false,\n // eslint-disable-next-line typescript/no-deprecated\n errorHandler: moduleOptions.errorHandler ?? sourceMapsUploadOptions.errorHandler,\n bundleSizeOptimizations: moduleOptions.bundleSizeOptimizations, // todo: test if this can be overridden by the user\n release: {\n // eslint-disable-next-line typescript/no-deprecated\n name: moduleOptions.release?.name ?? sourceMapsUploadOptions.release?.name,\n // Support all release options from BuildTimeOptionsBase\n ...moduleOptions.release,\n ...moduleOptions?.unstable_sentryBundlerPluginOptions?.release,\n },\n _metaOptions: {\n telemetry: {\n metaFramework: 'nuxt',\n },\n },\n ...moduleOptions?.unstable_sentryBundlerPluginOptions,\n\n sourcemaps: {\n disable: moduleOptions.sourcemaps?.disable,\n // The server/client files are in different places depending on the nitro preset (e.g. '.output/server' or '.netlify/functions-internal/server')\n // We cannot determine automatically how the build folder looks like (depends on the preset), so we have to accept that source maps are uploaded multiple times (with the vitePlugin for Nuxt and the rollupPlugin for Nitro).\n // If we could know where the server/client assets are located, we could do something like this (based on the Nitro preset): isNitro ? ['./.output/server/**/*'] : ['./.output/public/**/*'],\n // eslint-disable-next-line typescript/no-deprecated\n assets: sourcemapsOptions.assets ?? deprecatedSourcemapsOptions.assets ?? undefined,\n // eslint-disable-next-line typescript/no-deprecated\n ignore: sourcemapsOptions.ignore ?? deprecatedSourcemapsOptions.ignore ?? undefined,\n filesToDeleteAfterUpload: filesToDeleteAfterUpload\n ? filesToDeleteAfterUpload\n : shouldDeleteFilesFallback?.server || shouldDeleteFilesFallback?.client\n ? fallbackFilesToDelete\n : undefined,\n rewriteSources: sourcemapsOptions.rewriteSources ?? normalizePath,\n ...moduleOptions?.unstable_sentryBundlerPluginOptions?.sourcemaps,\n },\n };\n}\n\n/* There are multiple ways to set up source maps (https://github.com/getsentry/sentry-javascript/issues/13993 and https://github.com/getsentry/sentry-javascript/pull/15859)\n 1. User explicitly disabled source maps\n - keep this setting (emit a warning that errors won't be unminified in Sentry)\n - We will not upload anything\n 2. users enabled source map generation (true, hidden, inline).\n - keep this setting (don't do anything - like deletion - besides uploading)\n 3. users did not set source maps generation\n - we enable 'hidden' source maps generation\n - configure `filesToDeleteAfterUpload` to delete all .map files (we emit a log about this)\n\n Users only have to explicitly enable client source maps. Sentry only overwrites the base Nuxt source map settings as they propagate.\n */\n\n/** only exported for tests */\nexport function extractNuxtSourceMapSetting(\n nuxt: { options: { sourcemap?: SourceMapSetting | { server?: SourceMapSetting; client?: SourceMapSetting } } },\n runtime: 'client' | 'server' | undefined,\n): SourceMapSetting | undefined {\n if (!runtime) {\n return undefined;\n } else {\n return typeof nuxt.options?.sourcemap === 'boolean' || typeof nuxt.options?.sourcemap === 'string'\n ? nuxt.options.sourcemap\n : nuxt.options?.sourcemap?.[runtime];\n }\n}\n\n/** only exported for testing */\nexport function changeNuxtSourceMapSettings(\n nuxt: Nuxt,\n sentryModuleOptions: SentryNuxtModuleOptions,\n): { client: UserSourceMapSetting; server: UserSourceMapSetting } {\n nuxt.options.sourcemap = nuxt.options.sourcemap ?? { server: undefined, client: undefined };\n\n let previousUserSourceMapSetting: { client: UserSourceMapSetting; server: UserSourceMapSetting } = {\n client: undefined,\n server: undefined,\n };\n\n const nuxtSourceMap = nuxt.options.sourcemap;\n const isDebug = sentryModuleOptions.debug;\n\n if (typeof nuxtSourceMap === 'string' || typeof nuxtSourceMap === 'boolean' || typeof nuxtSourceMap === 'undefined') {\n switch (nuxtSourceMap) {\n case false:\n warnExplicitlyDisabledSourceMap('sourcemap', isDebug);\n previousUserSourceMapSetting = { client: 'disabled', server: 'disabled' };\n break;\n\n case 'hidden':\n case true:\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap', (nuxtSourceMap as true).toString());\n previousUserSourceMapSetting = { client: 'enabled', server: 'enabled' };\n break;\n case undefined:\n nuxt.options.sourcemap = { server: 'hidden', client: 'hidden' };\n isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');\n isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');\n previousUserSourceMapSetting = { client: 'unset', server: 'unset' };\n break;\n }\n } else {\n if (nuxtSourceMap.client === false) {\n warnExplicitlyDisabledSourceMap('sourcemap.client', isDebug);\n previousUserSourceMapSetting.client = 'disabled';\n } else if (['hidden', true].includes(nuxtSourceMap.client)) {\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.client', nuxtSourceMap.client.toString());\n previousUserSourceMapSetting.client = 'enabled';\n } else {\n nuxt.options.sourcemap.client = 'hidden';\n isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');\n previousUserSourceMapSetting.client = 'unset';\n }\n\n if (nuxtSourceMap.server === false) {\n warnExplicitlyDisabledSourceMap('sourcemap.server', isDebug);\n previousUserSourceMapSetting.server = 'disabled';\n } else if (['hidden', true].includes(nuxtSourceMap.server)) {\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.server', nuxtSourceMap.server.toString());\n previousUserSourceMapSetting.server = 'enabled';\n } else {\n nuxt.options.sourcemap.server = 'hidden';\n isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');\n previousUserSourceMapSetting.server = 'unset';\n }\n }\n\n return previousUserSourceMapSetting;\n}\n\n/** Logs warnings about potentially conflicting source map settings.\n * Configures `sourcemapExcludeSources` in Nitro to make source maps usable in Sentry.\n *\n * only exported for testing\n */\nexport function validateNitroSourceMapSettings(\n nuxt: { options: { sourcemap?: SourceMapSetting | { server?: SourceMapSetting } } },\n nitroConfig: NitroConfig,\n sentryModuleOptions: SentryNuxtModuleOptions,\n): void {\n const isDebug = sentryModuleOptions.debug;\n const nuxtSourceMap = extractNuxtSourceMapSetting(nuxt, 'server');\n\n // NITRO CONFIG ---\n\n validateDifferentSourceMapSettings({\n nuxtSettingKey: 'sourcemap.server',\n nuxtSettingValue: nuxtSourceMap,\n otherSettingKey: 'nitro.sourceMap',\n otherSettingValue: nitroConfig.sourceMap,\n });\n\n // ROLLUP CONFIG ---\n\n nitroConfig.rollupConfig = nitroConfig.rollupConfig || {};\n nitroConfig.rollupConfig.output = nitroConfig.rollupConfig.output || { sourcemap: undefined };\n const nitroRollupSourceMap = nitroConfig.rollupConfig.output.sourcemap;\n\n // We don't override nitro.rollupConfig.output.sourcemap (undefined by default, but overrides all other server-side source map settings)\n if (typeof nitroRollupSourceMap !== 'undefined' && ['hidden', 'inline', true, false].includes(nitroRollupSourceMap)) {\n const settingKey = 'nitro.rollupConfig.output.sourcemap';\n\n validateDifferentSourceMapSettings({\n nuxtSettingKey: 'sourcemap.server',\n nuxtSettingValue: nuxtSourceMap,\n otherSettingKey: settingKey,\n otherSettingValue: nitroRollupSourceMap,\n });\n }\n\n nitroConfig.rollupConfig.output.sourcemapExcludeSources = false;\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.log(\n '[Sentry] Set `sourcemapExcludeSources: false` in the Nuxt config (`nitro.rollupConfig.output`). Source maps will now include the actual code to be able to un-minify code snippets in Sentry.',\n );\n }\n}\n\n/**\n * Validates that source map settings are consistent between Nuxt and Vite/Nitro configurations.\n * Logs a warning if conflicting settings are detected.\n *\n * @internal Only exported for testing.\n */\nexport function validateDifferentSourceMapSettings({\n nuxtSettingKey,\n nuxtSettingValue,\n otherSettingKey,\n otherSettingValue,\n}: {\n nuxtSettingKey: string;\n nuxtSettingValue?: SourceMapSetting;\n otherSettingKey: string;\n otherSettingValue?: SourceMapSetting;\n}): void {\n if (nuxtSettingValue !== otherSettingValue) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] Source map generation settings are conflicting. Sentry uses \\`${nuxtSettingKey}: ${nuxtSettingValue}\\`. However, a conflicting setting was discovered (\\`${otherSettingKey}: ${otherSettingValue}\\`). This setting was probably explicitly set in your configuration. Sentry won't override this setting but it may affect source maps generation and upload. Without source maps, code snippets on the Sentry Issues page will remain minified.`,\n );\n }\n}\n\nfunction logKeepEnabledSourceMapSetting(\n sentryNuxtModuleOptions: SentryNuxtModuleOptions,\n settingKey: string,\n settingValue: string,\n): void {\n if (sentryNuxtModuleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] \\`${settingKey}\\` is enabled with \\`${settingValue}\\`. This will correctly un-minify the code snippet on the Sentry Issue Details page.`,\n );\n }\n}\n\nfunction warnExplicitlyDisabledSourceMap(settingKey: string, isDebug: boolean | undefined): void {\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] Source map generation is currently disabled in your Vite configuration (\\`${settingKey}: false \\`). This setting is either a default setting or was explicitly set in your configuration. Sentry won't override this setting. Without source maps, code snippets on the Sentry Issues page will remain minified. To show unminified code, enable source maps in \\`${settingKey}\\` (e.g. by setting them to \\`hidden\\`).`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.warn(`[Sentry] Source map generation (\\`${settingKey}\\`) is disabled in your Vite configuration.`);\n }\n}\n\nfunction logSentryEnablesSourceMap(settingKey: string, settingValue: string): void {\n // eslint-disable-next-line no-console\n console.log(`[Sentry] Enabled source map generation in the build options with \\`${settingKey}: ${settingValue}\\`.`);\n}\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"sourceMaps.js","sources":["../../../src/vite/sourceMaps.ts"],"sourcesContent":["import type { Nuxt } from '@nuxt/schema';\nimport { sentryRollupPlugin, type SentryRollupPluginOptions } from '@sentry/bundler-plugins/rollup';\nimport { sentryVitePlugin, type SentryVitePluginOptions } from '@sentry/bundler-plugins/vite';\nimport type { NitroConfig } from 'nitropack';\nimport type { Plugin } from 'vite';\nimport type { SentryNuxtModuleOptions } from '../common/types';\nimport { validateSourceMapsOptionsPlugin } from './sentryVitePlugin';\n\n/**\n * Whether the user enabled (true, 'hidden', 'inline') or disabled (false) source maps\n */\nexport type UserSourceMapSetting = 'enabled' | 'disabled' | 'unset' | undefined;\n\n/** A valid source map setting */\nexport type SourceMapSetting = boolean | 'hidden' | 'inline';\n\n/**\n * Setup source maps for Sentry inside the Nuxt module during build time (in Vite for Nuxt and Rollup for Nitro).\n */\nexport function setupSourceMaps(\n moduleOptions: SentryNuxtModuleOptions,\n nuxt: Nuxt,\n addVitePlugin: (plugin: Plugin[], options?: { dev?: boolean; build?: boolean }) => void,\n): void {\n const isDebug = moduleOptions.debug;\n\n const sourceMapsEnabled = moduleOptions.sourcemaps?.disable !== true;\n\n // In case we overwrite the source map settings, we default to deleting the files\n const shouldDeleteFilesFallback = { client: true, server: true };\n\n nuxt.hook('modules:done', () => {\n if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {\n // Changing this setting will propagate:\n // - for client to viteConfig.build.sourceMap\n // - for server to viteConfig.build.sourceMap and nitro.sourceMap\n // On server, nitro.rollupConfig.output.sourcemap remains unaffected from this change.\n\n // ONLY THIS nuxt.sourcemap.(server/client) setting is the one Sentry will overwrite with 'hidden', if needed.\n const previousSourceMapSettings = changeNuxtSourceMapSettings(nuxt, moduleOptions);\n\n // Mutate in place so the Vite plugin (which captured this object at registration time) sees the updated values\n shouldDeleteFilesFallback.client = previousSourceMapSettings.client === 'unset';\n shouldDeleteFilesFallback.server = previousSourceMapSettings.server === 'unset';\n\n if (isDebug && (shouldDeleteFilesFallback.client || shouldDeleteFilesFallback.server)) {\n const enabledDeleteFallbacks =\n shouldDeleteFilesFallback.client && shouldDeleteFilesFallback.server\n ? 'client-side and server-side'\n : shouldDeleteFilesFallback.server\n ? 'server-side'\n : 'client-side';\n\n if (!moduleOptions.sourcemaps?.filesToDeleteAfterUpload) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] We enabled \\`'hidden'\\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be automatically deleted after uploading them to Sentry.`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] We enabled \\`'hidden'\\` source maps for your ${enabledDeleteFallbacks} build. Source map files will be deleted according to your \\`sourcemaps.filesToDeleteAfterUpload\\` configuration. To use automatic deletion instead, leave \\`filesToDeleteAfterUpload\\` empty.`,\n );\n }\n }\n }\n });\n\n if (sourceMapsEnabled && !nuxt.options.dev && !nuxt.options?._prepare) {\n addVitePlugin(\n [\n validateSourceMapsOptionsPlugin({ nuxt, moduleOptions, sourceMapsEnabled }),\n // Vite plugin is added on the client and server side (plugin runs for both builds)\n ...sentryVitePlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),\n ],\n { dev: false, build: true }, // Only add source map plugin during build\n );\n }\n\n nuxt.hook('nitro:config', (nitroConfig: NitroConfig) => {\n if (sourceMapsEnabled && !nitroConfig.dev && !nuxt.options?._prepare) {\n nitroConfig.rollupConfig ??= {};\n\n if (nitroConfig.rollupConfig.plugins === null || nitroConfig.rollupConfig.plugins === undefined) {\n nitroConfig.rollupConfig.plugins = [];\n } else if (!Array.isArray(nitroConfig.rollupConfig.plugins)) {\n // `rollupConfig.plugins` can be a single plugin, so we want to put it into an array so that we can push our own plugin\n nitroConfig.rollupConfig.plugins = [nitroConfig.rollupConfig.plugins];\n }\n\n validateNitroSourceMapSettings(nuxt, nitroConfig, moduleOptions);\n\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.log('[Sentry] Adding Sentry Rollup plugin to the server runtime.');\n }\n\n // Add Sentry plugin\n // Runs only on server-side (Nitro)\n nitroConfig.rollupConfig.plugins.push(\n sentryRollupPlugin(getPluginOptions(moduleOptions, shouldDeleteFilesFallback)),\n );\n }\n });\n}\n\n/**\n * Normalizes the beginning of a path from e.g. ../../../ to ./\n */\nfunction normalizePath(path: string): string {\n return path.replace(/^(\\.\\.\\/)+/, './');\n}\n\n/**\n * Generates source maps upload options for the Sentry Vite and Rollup plugin.\n *\n * Only exported for Testing purposes.\n */\nexport function getPluginOptions(\n moduleOptions: SentryNuxtModuleOptions,\n shouldDeleteFilesFallback?: { client: boolean; server: boolean },\n): SentryVitePluginOptions | SentryRollupPluginOptions {\n const sourcemapsOptions = moduleOptions.sourcemaps || {};\n const filesToDeleteAfterUpload = resolveFilesToDeleteAfterUpload(moduleOptions, shouldDeleteFilesFallback);\n\n return {\n applicationKey: moduleOptions.applicationKey,\n org: moduleOptions.org ?? process.env.SENTRY_ORG,\n project: moduleOptions.project ?? process.env.SENTRY_PROJECT,\n authToken: moduleOptions.authToken ?? process.env.SENTRY_AUTH_TOKEN,\n telemetry: moduleOptions.telemetry ?? true,\n url: moduleOptions.sentryUrl ?? process.env.SENTRY_URL,\n headers: moduleOptions.headers,\n debug: moduleOptions.debug ?? false,\n silent: moduleOptions.silent ?? false,\n errorHandler: moduleOptions.errorHandler,\n bundleSizeOptimizations: moduleOptions.bundleSizeOptimizations, // todo: test if this can be overridden by the user\n release: {\n name: moduleOptions.release?.name,\n // Support all release options from BuildTimeOptionsBase\n ...moduleOptions.release,\n ...moduleOptions?.unstable_sentryBundlerPluginOptions?.release,\n },\n _metaOptions: {\n telemetry: {\n metaFramework: 'nuxt',\n },\n },\n ...moduleOptions?.unstable_sentryBundlerPluginOptions,\n\n sourcemaps: {\n disable: moduleOptions.sourcemaps?.disable,\n // The server/client files are in different places depending on the nitro preset (e.g. '.output/server' or '.netlify/functions-internal/server')\n // We cannot determine automatically how the build folder looks like (depends on the preset), so we have to accept that source maps are uploaded multiple times (with the vitePlugin for Nuxt and the rollupPlugin for Nitro).\n // If we could know where the server/client assets are located, we could do something like this (based on the Nitro preset): isNitro ? ['./.output/server/**/*'] : ['./.output/public/**/*'],\n assets: sourcemapsOptions.assets ?? undefined,\n ignore: sourcemapsOptions.ignore ?? undefined,\n filesToDeleteAfterUpload,\n rewriteSources: sourcemapsOptions.rewriteSources ?? normalizePath,\n ...moduleOptions?.unstable_sentryBundlerPluginOptions?.sourcemaps,\n },\n };\n}\n\n/**\n * Determines which files to delete after upload. If the user set `filesToDeleteAfterUpload`, we use\n * that. Otherwise we only delete the source maps Sentry generated itself — i.e. the sides\n * (client/server) whose `sourcemap` setting resolved to `undefined`, where Sentry stepped in and\n * enabled `'hidden'`. Given Nuxt's default of `{ server: true, client: false }`, this isn't the\n * default case: it only kicks in when a side is left `undefined` (whole config or a single sub-key).\n * @see https://nuxt.com/docs/4.x/api/nuxt-config#sourcemap\n */\nfunction resolveFilesToDeleteAfterUpload(\n moduleOptions: SentryNuxtModuleOptions,\n shouldDeleteFilesFallback?: { client: boolean; server: boolean },\n): string | Array<string> | undefined {\n const shouldDeleteFilesAfterUpload = shouldDeleteFilesFallback?.client || shouldDeleteFilesFallback?.server;\n const fallbackFilesToDelete = [\n ...(shouldDeleteFilesFallback?.client ? ['.*/**/public/**/*.map'] : []),\n ...(shouldDeleteFilesFallback?.server\n ? ['.*/**/server/**/*.map', '.*/**/output/**/*.map', '.*/**/function/**/*.map']\n : []),\n ];\n\n const filesToDeleteAfterUpload = moduleOptions.sourcemaps?.filesToDeleteAfterUpload;\n\n if (typeof filesToDeleteAfterUpload === 'undefined' && shouldDeleteFilesAfterUpload && moduleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] Setting \\`sentry.sourcemaps.filesToDeleteAfterUpload: [${fallbackFilesToDelete\n // Logging it as strings in the array\n .map(path => `\"${path}\"`)\n .join(', ')}]\\` to delete generated source maps after they were uploaded to Sentry.`,\n );\n }\n\n return filesToDeleteAfterUpload\n ? filesToDeleteAfterUpload\n : shouldDeleteFilesAfterUpload\n ? fallbackFilesToDelete\n : undefined;\n}\n\n/* There are multiple ways to set up source maps (https://github.com/getsentry/sentry-javascript/issues/13993 and https://github.com/getsentry/sentry-javascript/pull/15859)\n 1. User explicitly disabled source maps\n - keep this setting (emit a warning that errors won't be unminified in Sentry)\n - We will not upload anything\n 2. users enabled source map generation (true, hidden, inline).\n - keep this setting (don't do anything - like deletion - besides uploading)\n 3. users did not set source maps generation\n - we enable 'hidden' source maps generation\n - configure `filesToDeleteAfterUpload` to delete all .map files (we emit a log about this)\n\n Users only have to explicitly enable client source maps. Sentry only overwrites the base Nuxt source map settings as they propagate.\n */\n\n/** only exported for tests */\nexport function extractNuxtSourceMapSetting(\n nuxt: { options: { sourcemap?: SourceMapSetting | { server?: SourceMapSetting; client?: SourceMapSetting } } },\n runtime: 'client' | 'server' | undefined,\n): SourceMapSetting | undefined {\n if (!runtime) {\n return undefined;\n } else {\n return typeof nuxt.options?.sourcemap === 'boolean' || typeof nuxt.options?.sourcemap === 'string'\n ? nuxt.options.sourcemap\n : nuxt.options?.sourcemap?.[runtime];\n }\n}\n\n/** only exported for testing */\nexport function changeNuxtSourceMapSettings(\n nuxt: Nuxt,\n sentryModuleOptions: SentryNuxtModuleOptions,\n): { client: UserSourceMapSetting; server: UserSourceMapSetting } {\n nuxt.options.sourcemap = nuxt.options.sourcemap ?? { server: undefined, client: undefined };\n\n let previousUserSourceMapSetting: { client: UserSourceMapSetting; server: UserSourceMapSetting } = {\n client: undefined,\n server: undefined,\n };\n\n const nuxtSourceMap = nuxt.options.sourcemap;\n const isDebug = sentryModuleOptions.debug;\n\n if (typeof nuxtSourceMap === 'string' || typeof nuxtSourceMap === 'boolean' || typeof nuxtSourceMap === 'undefined') {\n switch (nuxtSourceMap) {\n case false:\n warnExplicitlyDisabledSourceMap('sourcemap', isDebug);\n previousUserSourceMapSetting = { client: 'disabled', server: 'disabled' };\n break;\n\n case 'hidden':\n case true:\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap', (nuxtSourceMap as true).toString());\n previousUserSourceMapSetting = { client: 'enabled', server: 'enabled' };\n break;\n case undefined:\n nuxt.options.sourcemap = { server: 'hidden', client: 'hidden' };\n isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');\n isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');\n previousUserSourceMapSetting = { client: 'unset', server: 'unset' };\n break;\n }\n } else {\n if (nuxtSourceMap.client === false) {\n warnExplicitlyDisabledSourceMap('sourcemap.client', isDebug);\n previousUserSourceMapSetting.client = 'disabled';\n } else if (['hidden', true].includes(nuxtSourceMap.client)) {\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.client', nuxtSourceMap.client.toString());\n previousUserSourceMapSetting.client = 'enabled';\n } else {\n nuxt.options.sourcemap.client = 'hidden';\n isDebug && logSentryEnablesSourceMap('sourcemap.client', 'hidden');\n previousUserSourceMapSetting.client = 'unset';\n }\n\n if (nuxtSourceMap.server === false) {\n warnExplicitlyDisabledSourceMap('sourcemap.server', isDebug);\n previousUserSourceMapSetting.server = 'disabled';\n } else if (['hidden', true].includes(nuxtSourceMap.server)) {\n logKeepEnabledSourceMapSetting(sentryModuleOptions, 'sourcemap.server', nuxtSourceMap.server.toString());\n previousUserSourceMapSetting.server = 'enabled';\n } else {\n nuxt.options.sourcemap.server = 'hidden';\n isDebug && logSentryEnablesSourceMap('sourcemap.server', 'hidden');\n previousUserSourceMapSetting.server = 'unset';\n }\n }\n\n return previousUserSourceMapSetting;\n}\n\n/** Logs warnings about potentially conflicting source map settings.\n * Configures `sourcemapExcludeSources` in Nitro to make source maps usable in Sentry.\n *\n * only exported for testing\n */\nexport function validateNitroSourceMapSettings(\n nuxt: { options: { sourcemap?: SourceMapSetting | { server?: SourceMapSetting } } },\n nitroConfig: NitroConfig,\n sentryModuleOptions: SentryNuxtModuleOptions,\n): void {\n const isDebug = sentryModuleOptions.debug;\n const nuxtSourceMap = extractNuxtSourceMapSetting(nuxt, 'server');\n\n // NITRO CONFIG ---\n\n validateDifferentSourceMapSettings({\n nuxtSettingKey: 'sourcemap.server',\n nuxtSettingValue: nuxtSourceMap,\n otherSettingKey: 'nitro.sourceMap',\n otherSettingValue: nitroConfig.sourceMap,\n });\n\n // ROLLUP CONFIG ---\n\n nitroConfig.rollupConfig = nitroConfig.rollupConfig || {};\n nitroConfig.rollupConfig.output = nitroConfig.rollupConfig.output || { sourcemap: undefined };\n const nitroRollupSourceMap = nitroConfig.rollupConfig.output.sourcemap;\n\n // We don't override nitro.rollupConfig.output.sourcemap (undefined by default, but overrides all other server-side source map settings)\n if (typeof nitroRollupSourceMap !== 'undefined' && ['hidden', 'inline', true, false].includes(nitroRollupSourceMap)) {\n const settingKey = 'nitro.rollupConfig.output.sourcemap';\n\n validateDifferentSourceMapSettings({\n nuxtSettingKey: 'sourcemap.server',\n nuxtSettingValue: nuxtSourceMap,\n otherSettingKey: settingKey,\n otherSettingValue: nitroRollupSourceMap,\n });\n }\n\n nitroConfig.rollupConfig.output.sourcemapExcludeSources = false;\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.log(\n '[Sentry] Set `sourcemapExcludeSources: false` in the Nuxt config (`nitro.rollupConfig.output`). Source maps will now include the actual code to be able to un-minify code snippets in Sentry.',\n );\n }\n}\n\n/**\n * Validates that source map settings are consistent between Nuxt and Vite/Nitro configurations.\n * Logs a warning if conflicting settings are detected.\n *\n * @internal Only exported for testing.\n */\nexport function validateDifferentSourceMapSettings({\n nuxtSettingKey,\n nuxtSettingValue,\n otherSettingKey,\n otherSettingValue,\n}: {\n nuxtSettingKey: string;\n nuxtSettingValue?: SourceMapSetting;\n otherSettingKey: string;\n otherSettingValue?: SourceMapSetting;\n}): void {\n if (nuxtSettingValue !== otherSettingValue) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] Source map generation settings are conflicting. Sentry uses \\`${nuxtSettingKey}: ${nuxtSettingValue}\\`. However, a conflicting setting was discovered (\\`${otherSettingKey}: ${otherSettingValue}\\`). This setting was probably explicitly set in your configuration. Sentry won't override this setting but it may affect source maps generation and upload. Without source maps, code snippets on the Sentry Issues page will remain minified.`,\n );\n }\n}\n\nfunction logKeepEnabledSourceMapSetting(\n sentryNuxtModuleOptions: SentryNuxtModuleOptions,\n settingKey: string,\n settingValue: string,\n): void {\n if (sentryNuxtModuleOptions.debug) {\n // eslint-disable-next-line no-console\n console.log(\n `[Sentry] \\`${settingKey}\\` is enabled with \\`${settingValue}\\`. This will correctly un-minify the code snippet on the Sentry Issue Details page.`,\n );\n }\n}\n\nfunction warnExplicitlyDisabledSourceMap(settingKey: string, isDebug: boolean | undefined): void {\n if (isDebug) {\n // eslint-disable-next-line no-console\n console.warn(\n `[Sentry] Source map generation is currently disabled in your Vite configuration (\\`${settingKey}: false \\`). This setting is either a default setting or was explicitly set in your configuration. Sentry won't override this setting. Without source maps, code snippets on the Sentry Issues page will remain minified. To show unminified code, enable source maps in \\`${settingKey}\\` (e.g. by setting them to \\`hidden\\`).`,\n );\n } else {\n // eslint-disable-next-line no-console\n console.warn(`[Sentry] Source map generation (\\`${settingKey}\\`) is disabled in your Vite configuration.`);\n }\n}\n\nfunction logSentryEnablesSourceMap(settingKey: string, settingValue: string): void {\n // eslint-disable-next-line no-console\n console.log(`[Sentry] Enabled source map generation in the build options with \\`${settingKey}: ${settingValue}\\`.`);\n}\n"],"names":[],"mappings":"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"}
|