@sentry/gatsby 10.46.0 → 10.48.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/esm/package.json +1 -1
- package/gatsby-node.js +2 -2
- package/package.json +4 -4
package/build/esm/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"type":"module","version":"10.
|
|
1
|
+
{"type":"module","version":"10.48.0","sideEffects":false}
|
package/gatsby-node.js
CHANGED
|
@@ -41,7 +41,7 @@ exports.onCreateWebpackConfig = ({ getConfig, actions }, options) => {
|
|
|
41
41
|
},
|
|
42
42
|
// Handle sentry-cli configuration errors when the user has not done it not to break
|
|
43
43
|
// the build.
|
|
44
|
-
errorHandler(err
|
|
44
|
+
errorHandler(err) {
|
|
45
45
|
const message = (err.message && err.message.toLowerCase()) || '';
|
|
46
46
|
if (message.includes('organization slug is required') || message.includes('project slug is required')) {
|
|
47
47
|
// eslint-disable-next-line no-console
|
|
@@ -55,7 +55,7 @@ exports.onCreateWebpackConfig = ({ getConfig, actions }, options) => {
|
|
|
55
55
|
console.warn('Sentry [Warn]: Cannot upload source maps due to missing SENTRY_AUTH_TOKEN env variable.');
|
|
56
56
|
return;
|
|
57
57
|
}
|
|
58
|
-
|
|
58
|
+
throw err;
|
|
59
59
|
},
|
|
60
60
|
}),
|
|
61
61
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentry/gatsby",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.48.0",
|
|
4
4
|
"description": "Official Sentry SDK for Gatsby.js",
|
|
5
5
|
"repository": "git://github.com/getsentry/sentry-javascript.git",
|
|
6
6
|
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/gatsby",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"access": "public"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@sentry/core": "10.
|
|
49
|
-
"@sentry/react": "10.
|
|
50
|
-
"@sentry/webpack-plugin": "^5.
|
|
48
|
+
"@sentry/core": "10.48.0",
|
|
49
|
+
"@sentry/react": "10.48.0",
|
|
50
|
+
"@sentry/webpack-plugin": "^5.2.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"gatsby": "^3.0.0 || ^4.0.0 || ^5.0.0",
|