File tree Expand file tree Collapse file tree 9 files changed +13
-13
lines changed Expand file tree Collapse file tree 9 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 11import express from "express" ;
22const app = express ( ) ;
33
4- import { KnownEventDataKeys } from "@exceptionless/core" ;
5- import { Exceptionless } from "@exceptionless/node" ;
4+ import { Exceptionless , KnownEventDataKeys } from "@exceptionless/node" ;
65
76await Exceptionless . startup ( ( c ) => {
87 c . apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw" ;
Original file line number Diff line number Diff line change 1- import { Exceptionless } from "@exceptionless/browser" ;
2- import { toError } from "@exceptionless/core" ;
1+ import { Exceptionless , toError } from "@exceptionless/browser" ;
32
43Exceptionless . startup ( c => {
54 c . apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw" ;
Original file line number Diff line number Diff line change 1- import { toError } from "@exceptionless/core" ;
2- import { Exceptionless } from "@exceptionless/node" ;
1+ import { Exceptionless , toError } from "@exceptionless/node" ;
32
43Exceptionless . startup ( c => {
54 c . apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw" ;
Original file line number Diff line number Diff line change 1- import { toError } from "@exceptionless/core" ;
21import {
32 BrowserExceptionlessClient ,
4- Exceptionless
3+ Exceptionless ,
4+ toError
55} from "@exceptionless/browser" ;
66
77declare let angular ;
Original file line number Diff line number Diff line change 1+ export * from "@exceptionless/core" ;
2+
13export { BrowserErrorPlugin } from "./plugins/BrowserErrorPlugin.js"
24export { BrowserGlobalHandlerPlugin } from "./plugins/BrowserGlobalHandlerPlugin.js" ;
35export { BrowserIgnoreExtensionErrorsPlugin } from "./plugins/BrowserIgnoreExtensionErrorsPlugin.js" ;
Original file line number Diff line number Diff line change 1+ export * from "@exceptionless/core" ;
2+
13export { NodeErrorPlugin } from "./plugins/NodeErrorPlugin.js"
24export { NodeEnvironmentInfoPlugin } from "./plugins/NodeEnvironmentInfoPlugin.js" ;
35export { NodeGlobalHandlerPlugin } from "./plugins/NodeGlobalHandlerPlugin.js" ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ type ErrorState = {
55 hasError : boolean ;
66} ;
77
8- export default class ExceptionlessErrorBoundary extends Component <
8+ export class ExceptionlessErrorBoundary extends Component <
99 PropsWithChildren ,
1010 ErrorState
1111> {
Original file line number Diff line number Diff line change 1- import { Exceptionless } from "@exceptionless/browser" ;
2- import ExceptionlessErrorBoundary from "./ExceptionlessErrorBoundary.js" ;
1+ export * from "@exceptionless/browser" ;
32
4- export { Exceptionless , ExceptionlessErrorBoundary }
3+ export { ExceptionlessErrorBoundary } from "./ExceptionlessErrorBoundary.js" ;
Original file line number Diff line number Diff line change 1+ export * from "@exceptionless/browser" ;
12import { Exceptionless } from "@exceptionless/browser" ;
2- export { Exceptionless } ;
33
44/**
55 * https://vuejs.org/v2/api/#errorHandler
You can’t perform that action at this time.
0 commit comments