Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
feat: Tracing + Reduced Bundle Size + build updates#2038
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
5007b5cc4c8f6038ddce276c6ed6047ce986f9a51448863dc33fe94dbae0cd1c03f26aee574e2399f5ba83a5e746cc60063d2c7027c423c75630d0f8e05938d80ef9ceae4e3db9f5302cca0d2731aa06cbe5bee590d8a6adf8e5b85f7736d21d76f43c775ebFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -9,6 +9,7 @@ packages/*/esm/ | ||
| coverage/ | ||
| scratch/ | ||
| *.pyc | ||
| *.tsbuildinfo | ||
| # logs | ||
| yarn-error.log | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -2,3 +2,4 @@ | ||
| !/dist/**/* | ||
| !/build/**/* | ||
| !/esm/**/* | ||
| *.tsbuildinfo | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -43,9 +43,7 @@ const plugins = [ | ||
| include: ['*.ts+(|x)', '**/*.ts+(|x)', '../**/*.ts+(|x)'], | ||
| }), | ||
| resolve({ | ||
| module: true, | ||
| browser: false, | ||
| modulesOnly: false, | ||
| mainFields: ['module'], | ||
kamilogorek marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| }), | ||
| commonjs(), | ||
| ]; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -19,14 +19,14 @@ export abstract class BaseTransport implements Transport { | ||
| /** | ||
| * @inheritDoc | ||
| */ | ||
| public async sendEvent(_: Event): Promise<Response> { | ||
kamilogorek marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| public sendEvent(_: Event): Promise<Response> { | ||
| throw new SentryError('Transport Class has to implement `sendEvent` method'); | ||
| } | ||
| /** | ||
| * @inheritDoc | ||
| */ | ||
| public async close(timeout?: number): Promise<boolean> { | ||
| public close(timeout?: number): Promise<boolean> { | ||
| return this._buffer.drain(timeout); | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| export const SDK_NAME = 'sentry.javascript.browser'; | ||
| export const SDK_VERSION = '5.1.3'; | ||
| export const SDK_VERSION = '5.2.0-beta.0'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| * | ||
| !/dist/**/* | ||
| !/esm/**/* | ||
| *.tsbuildinfo |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.