@drawbridge/drawbridge-telemetry 0.0.5 → 0.0.6
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/dist/nextjs.cjs +4 -4
- package/dist/nextjs.d.cts +1 -1
- package/dist/nextjs.d.ts +1 -1
- package/dist/nextjs.js +2 -3
- package/package.json +1 -1
package/dist/nextjs.cjs
CHANGED
|
@@ -16,6 +16,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
16
16
|
}
|
|
17
17
|
return to;
|
|
18
18
|
};
|
|
19
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
20
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
21
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
22
|
// file that has been converted to a CommonJS file using a Babel-
|
|
@@ -34,12 +35,11 @@ __export(nextjs_exports, {
|
|
|
34
35
|
captureMessage: () => captureMessage2,
|
|
35
36
|
captureRequestError: () => captureRequestError2,
|
|
36
37
|
init: () => init2,
|
|
37
|
-
logger: () => logger2
|
|
38
|
-
withSentryConfig: () => import_nextjs.withSentryConfig
|
|
38
|
+
logger: () => logger2
|
|
39
39
|
});
|
|
40
40
|
module.exports = __toCommonJS(nextjs_exports);
|
|
41
41
|
var Sentry = __toESM(require("@sentry/nextjs"), 1);
|
|
42
|
-
|
|
42
|
+
__reExport(nextjs_exports, require("@sentry/nextjs"), module.exports);
|
|
43
43
|
var init2 = (config = {}) => Sentry.init({
|
|
44
44
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
|
45
45
|
enableLogs: true,
|
|
@@ -59,5 +59,5 @@ var logger2 = Sentry.logger;
|
|
|
59
59
|
captureRequestError,
|
|
60
60
|
init,
|
|
61
61
|
logger,
|
|
62
|
-
|
|
62
|
+
...require("@sentry/nextjs")
|
|
63
63
|
});
|
package/dist/nextjs.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as Sentry from '@sentry/nextjs';
|
|
2
|
+
export * from '@sentry/nextjs';
|
|
2
3
|
export { Sentry };
|
|
3
|
-
export { withSentryConfig } from '@sentry/nextjs';
|
|
4
4
|
|
|
5
5
|
// @sentry/nextjs surface routed through drawbridge-telemetry so consumer
|
|
6
6
|
// apps (drawbridge-app-web, drawbridge-share) never import @sentry/nextjs
|
package/dist/nextjs.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as Sentry from '@sentry/nextjs';
|
|
2
|
+
export * from '@sentry/nextjs';
|
|
2
3
|
export { Sentry };
|
|
3
|
-
export { withSentryConfig } from '@sentry/nextjs';
|
|
4
4
|
|
|
5
5
|
// @sentry/nextjs surface routed through drawbridge-telemetry so consumer
|
|
6
6
|
// apps (drawbridge-app-web, drawbridge-share) never import @sentry/nextjs
|
package/dist/nextjs.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// nextjs.js
|
|
2
2
|
import * as Sentry from "@sentry/nextjs";
|
|
3
|
-
|
|
3
|
+
export * from "@sentry/nextjs";
|
|
4
4
|
var init2 = (config = {}) => Sentry.init({
|
|
5
5
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
|
6
6
|
enableLogs: true,
|
|
@@ -18,6 +18,5 @@ export {
|
|
|
18
18
|
captureMessage2 as captureMessage,
|
|
19
19
|
captureRequestError2 as captureRequestError,
|
|
20
20
|
init2 as init,
|
|
21
|
-
logger2 as logger
|
|
22
|
-
withSentryConfig
|
|
21
|
+
logger2 as logger
|
|
23
22
|
};
|
package/package.json
CHANGED