Skip to content

Commit fe8e51b

Browse files
committed
remove minimal from the repo
1 parent 74aed53 commit fe8e51b

File tree

12 files changed

+5
-15
lines changed

12 files changed

+5
-15
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ below:
104104
extensions for Performance Monitoring / Tracing
105105
- [`@sentry/hub`](https://github.com/getsentry/sentry-javascript/tree/master/packages/hub): Global state management of
106106
SDKs
107-
- [`@sentry/minimal`](https://github.com/getsentry/sentry-javascript/tree/master/packages/minimal): Minimal SDK for
108-
library authors to add Sentry support
109107
- [`@sentry/core`](https://github.com/getsentry/sentry-javascript/tree/master/packages/core): The base for all
110108
JavaScript SDKs with interfaces, type definitions and base classes.
111109
- [`@sentry/utils`](https://github.com/getsentry/sentry-javascript/tree/master/packages/utils): A set of helpers and

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
"packages/hub",
4141
"packages/integration-tests",
4242
"packages/integrations",
43-
"packages/minimal",
4443
"packages/nextjs",
4544
"packages/node",
4645
"packages/node-integration-tests",

packages/core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
},
1818
"dependencies": {
1919
"@sentry/hub": "7.0.0-alpha.1",
20-
"@sentry/minimal": "7.0.0-alpha.1",
2120
"@sentry/types": "7.0.0-alpha.1",
2221
"@sentry/utils": "7.0.0-alpha.1",
2322
"tslib": "^1.9.3"

packages/core/test/mocks/integration.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { getCurrentHub } from '@sentry/hub';
2-
import { configureScope } from '@sentry/minimal';
1+
import { configureScope, getCurrentHub } from '@sentry/hub';
32
import { Event, EventProcessor, Integration } from '@sentry/types';
43

54
export class TestIntegration implements Integration {

packages/nextjs/test/integration/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"@sentry/core": "file:../../../core",
2929
"@sentry/hub": "file:../../../hub",
3030
"@sentry/integrations": "file:../../../integrations",
31-
"@sentry/minimal": "file:../../../minimal",
3231
"@sentry/node": "file:../../../node",
3332
"@sentry/react": "file:../../../react",
3433
"@sentry/tracing": "file:../../../tracing",

packages/react/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
},
1818
"dependencies": {
1919
"@sentry/browser": "7.0.0-alpha.1",
20-
"@sentry/minimal": "7.0.0-alpha.1",
2120
"@sentry/types": "7.0.0-alpha.1",
2221
"@sentry/utils": "7.0.0-alpha.1",
2322
"hoist-non-react-statics": "^3.3.2",

packages/react/src/redux.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable @typescript-eslint/no-explicit-any */
2-
import { configureScope } from '@sentry/minimal';
2+
import { configureScope } from '@sentry/browser';
33
import { Scope } from '@sentry/types';
44

55
interface Action<T = any> {

packages/react/test/redux.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as Sentry from '@sentry/minimal';
1+
import * as Sentry from '@sentry/browser';
22
import { Scope } from '@sentry/types';
33
import * as Redux from 'redux';
44

@@ -7,7 +7,8 @@ import { createReduxEnhancer } from '../src/redux';
77
const mockAddBreadcrumb = jest.fn();
88
const mockSetContext = jest.fn();
99

10-
jest.mock('@sentry/minimal', () => ({
10+
jest.mock('@sentry/browser', () => ({
11+
...jest.requireActual('@sentry/browser'),
1112
configureScope: (callback: (scope: any) => Partial<Scope>) =>
1213
callback({
1314
addBreadcrumb: mockAddBreadcrumb,

packages/serverless/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"access": "public"
1717
},
1818
"dependencies": {
19-
"@sentry/minimal": "7.0.0-alpha.1",
2019
"@sentry/node": "7.0.0-alpha.1",
2120
"@sentry/tracing": "7.0.0-alpha.1",
2221
"@sentry/types": "7.0.0-alpha.1",

packages/tracing/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
},
1818
"dependencies": {
1919
"@sentry/hub": "7.0.0-alpha.1",
20-
"@sentry/minimal": "7.0.0-alpha.1",
2120
"@sentry/types": "7.0.0-alpha.1",
2221
"@sentry/utils": "7.0.0-alpha.1",
2322
"tslib": "^1.9.3"

packages/vue/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"dependencies": {
1919
"@sentry/browser": "7.0.0-alpha.1",
2020
"@sentry/core": "7.0.0-alpha.1",
21-
"@sentry/minimal": "7.0.0-alpha.1",
2221
"@sentry/types": "7.0.0-alpha.1",
2322
"@sentry/utils": "7.0.0-alpha.1",
2423
"tslib": "^1.9.3"

rollup/plugins/bundlePlugins.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ export function makeTSPlugin(jsVersion) {
109109
'@sentry/browser': ['../browser/src'],
110110
'@sentry/core': ['../core/src'],
111111
'@sentry/hub': ['../hub/src'],
112-
'@sentry/minimal': ['../minimal/src'],
113112
'@sentry/types': ['../types/src'],
114113
'@sentry/utils': ['../utils/src'],
115114
},

0 commit comments

Comments
 (0)