File tree 9 files changed +13
-13
lines changed
9 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
import express from "express" ;
2
2
const app = express ( ) ;
3
3
4
- import { KnownEventDataKeys } from "@exceptionless/core" ;
5
- import { Exceptionless } from "@exceptionless/node" ;
4
+ import { Exceptionless , KnownEventDataKeys } from "@exceptionless/node" ;
6
5
7
6
await Exceptionless . startup ( ( c ) => {
8
7
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" ;
3
2
4
3
Exceptionless . startup ( c => {
5
4
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" ;
3
2
4
3
Exceptionless . startup ( c => {
5
4
c . apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw" ;
Original file line number Diff line number Diff line change 1
- import { toError } from "@exceptionless/core" ;
2
1
import {
3
2
BrowserExceptionlessClient ,
4
- Exceptionless
3
+ Exceptionless ,
4
+ toError
5
5
} from "@exceptionless/browser" ;
6
6
7
7
declare let angular ;
Original file line number Diff line number Diff line change
1
+ export * from "@exceptionless/core" ;
2
+
1
3
export { BrowserErrorPlugin } from "./plugins/BrowserErrorPlugin.js"
2
4
export { BrowserGlobalHandlerPlugin } from "./plugins/BrowserGlobalHandlerPlugin.js" ;
3
5
export { BrowserIgnoreExtensionErrorsPlugin } from "./plugins/BrowserIgnoreExtensionErrorsPlugin.js" ;
Original file line number Diff line number Diff line change
1
+ export * from "@exceptionless/core" ;
2
+
1
3
export { NodeErrorPlugin } from "./plugins/NodeErrorPlugin.js"
2
4
export { NodeEnvironmentInfoPlugin } from "./plugins/NodeEnvironmentInfoPlugin.js" ;
3
5
export { NodeGlobalHandlerPlugin } from "./plugins/NodeGlobalHandlerPlugin.js" ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ type ErrorState = {
5
5
hasError : boolean ;
6
6
} ;
7
7
8
- export default class ExceptionlessErrorBoundary extends Component <
8
+ export class ExceptionlessErrorBoundary extends Component <
9
9
PropsWithChildren ,
10
10
ErrorState
11
11
> {
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" ;
3
2
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" ;
1
2
import { Exceptionless } from "@exceptionless/browser" ;
2
- export { Exceptionless } ;
3
3
4
4
/**
5
5
* https://vuejs.org/v2/api/#errorHandler
You can’t perform that action at this time.
0 commit comments