@sentry/nuxt 11.0.0-alpha.1 → 11.0.0-beta.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/README.md +5 -0
- package/build/cjs/common/devMode.js +12 -0
- package/build/cjs/common/devMode.js.map +1 -0
- package/build/cjs/module.js +9 -5
- package/build/cjs/module.js.map +1 -1
- package/build/cjs/server/sdk.js +2 -25
- package/build/cjs/server/sdk.js.map +1 -1
- package/build/cjs/vite/addServerConfig.js +33 -4
- package/build/cjs/vite/addServerConfig.js.map +1 -1
- package/build/cjs/vite/orchestrion.js +3 -0
- package/build/cjs/vite/orchestrion.js.map +1 -1
- package/build/cjs/vite/sourceMapDeletion.js +35 -0
- package/build/cjs/vite/sourceMapDeletion.js.map +1 -0
- package/build/cjs/vite/sourceMaps.js +13 -6
- package/build/cjs/vite/sourceMaps.js.map +1 -1
- package/build/cjs/vite/utils.js +7 -11
- package/build/cjs/vite/utils.js.map +1 -1
- package/build/esm/common/devMode.js +9 -0
- package/build/esm/common/devMode.js.map +1 -0
- package/build/esm/module.js +11 -7
- package/build/esm/module.js.map +1 -1
- package/build/esm/package.json +1 -1
- package/build/esm/server/sdk.js +6 -27
- package/build/esm/server/sdk.js.map +1 -1
- package/build/esm/vite/addServerConfig.js +31 -4
- package/build/esm/vite/addServerConfig.js.map +1 -1
- package/build/esm/vite/orchestrion.js +3 -0
- package/build/esm/vite/orchestrion.js.map +1 -1
- package/build/esm/vite/sourceMapDeletion.js +32 -0
- package/build/esm/vite/sourceMapDeletion.js.map +1 -0
- package/build/esm/vite/sourceMaps.js +13 -6
- package/build/esm/vite/sourceMaps.js.map +1 -1
- package/build/esm/vite/utils.js +6 -12
- package/build/esm/vite/utils.js.map +1 -1
- package/build/module/common/devMode.d.ts +4 -0
- package/build/module/common/types.d.ts +0 -9
- package/build/module/module.json +1 -1
- package/build/module/module.mjs +87 -25
- package/build/module/runtime/hooks/captureErrorHook.js +2 -1
- package/build/module/runtime/hooks/wrapMiddlewareHandler.js +6 -5
- package/build/module/runtime/utils/instrumentDatabase.js +26 -6
- package/build/module/runtime/utils/instrumentStorage.js +21 -15
- package/build/module/runtime/utils/patchEventHandler.js +2 -1
- package/build/module/vite/addServerConfig.d.ts +9 -0
- package/build/module/vite/sourceMapDeletion.d.ts +3 -0
- package/build/module/vite/utils.d.ts +3 -1
- package/build/types/common/devMode.d.ts +5 -0
- package/build/types/common/devMode.d.ts.map +1 -0
- package/build/types/common/types.d.ts +0 -9
- package/build/types/common/types.d.ts.map +1 -1
- package/build/types/index.types.d.ts +3 -1
- package/build/types/index.types.d.ts.map +1 -1
- package/build/types/module.d.ts.map +1 -1
- package/build/types/runtime/hooks/captureErrorHook.d.ts.map +1 -1
- package/build/types/runtime/hooks/wrapMiddlewareHandler.d.ts.map +1 -1
- package/build/types/runtime/utils/instrumentDatabase.d.ts.map +1 -1
- package/build/types/runtime/utils/instrumentStorage.d.ts.map +1 -1
- package/build/types/runtime/utils/patchEventHandler.d.ts.map +1 -1
- package/build/types/server/sdk.d.ts.map +1 -1
- package/build/types/vite/addServerConfig.d.ts +9 -0
- package/build/types/vite/addServerConfig.d.ts.map +1 -1
- package/build/types/vite/orchestrion.d.ts.map +1 -1
- package/build/types/vite/sourceMapDeletion.d.ts +4 -0
- package/build/types/vite/sourceMapDeletion.d.ts.map +1 -0
- package/build/types/vite/sourceMaps.d.ts.map +1 -1
- package/build/types/vite/utils.d.ts +3 -1
- package/build/types/vite/utils.d.ts.map +1 -1
- package/package.json +11 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/nuxt",
|
|
3
|
-
"version": "11.0.0-
|
|
3
|
+
"version": "11.0.0-beta.0",
|
|
4
4
|
"description": "Official Sentry SDK for Nuxt",
|
|
5
5
|
"repository": "git://github.com/getsentry/sentry-javascript.git",
|
|
6
6
|
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/nuxt",
|
|
@@ -54,14 +54,15 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@nuxt/kit": "^4.5.2",
|
|
57
|
-
"@sentry/browser": "11.0.0-
|
|
58
|
-
"@sentry/cloudflare": "11.0.0-
|
|
59
|
-
"@sentry/conventions": "^0.
|
|
60
|
-
"@sentry/core": "11.0.0-
|
|
61
|
-
"@sentry/node": "11.0.0-
|
|
62
|
-
"@sentry/bundler-plugins": "11.0.0-
|
|
63
|
-
"@sentry/server-
|
|
64
|
-
"@sentry/
|
|
57
|
+
"@sentry/browser": "11.0.0-beta.0",
|
|
58
|
+
"@sentry/cloudflare": "11.0.0-beta.0",
|
|
59
|
+
"@sentry/conventions": "^0.20.0",
|
|
60
|
+
"@sentry/core": "11.0.0-beta.0",
|
|
61
|
+
"@sentry/node": "11.0.0-beta.0",
|
|
62
|
+
"@sentry/bundler-plugins": "11.0.0-beta.0",
|
|
63
|
+
"@sentry/server-runtime-injection": "11.0.0-beta.0",
|
|
64
|
+
"@sentry/server-utils": "11.0.0-beta.0",
|
|
65
|
+
"@sentry/vue": "11.0.0-beta.0",
|
|
65
66
|
"local-pkg": "^1.1.2"
|
|
66
67
|
},
|
|
67
68
|
"devDependencies": {
|
|
@@ -85,6 +86,7 @@
|
|
|
85
86
|
"clean": "rimraf build coverage sentry-nuxt-*.tgz",
|
|
86
87
|
"lint:fix": "oxlint . --fix --type-aware",
|
|
87
88
|
"lint": "oxlint . --type-aware",
|
|
89
|
+
"lint:types": "oxlint src --type-aware --type-check",
|
|
88
90
|
"lint:es-compatibility": "es-check es2020 ./build/cjs/*.js && es-check es2020 ./build/esm/*.js --module && es-check es2020 ./build/module/*.mjs --module",
|
|
89
91
|
"test": "yarn test:unit",
|
|
90
92
|
"test:unit": "vitest run",
|