Skip to content

Commit 211fc0c

Browse files
committed
ref(integrations): remove offline integration
BREAKING CHANGE: Removes the already deprecated offline integration.
1 parent bf72904 commit 211fc0c

File tree

4 files changed

+1
-408
lines changed

4 files changed

+1
-408
lines changed

packages/integrations/rollup.bundle.config.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import commonjs from '@rollup/plugin-commonjs';
2-
3-
import { insertAt, makeBaseBundleConfig, makeBundleConfigVariants } from '../../rollup/index.js';
1+
import { makeBaseBundleConfig, makeBundleConfigVariants } from '../../rollup/index.js';
42

53
const builds = [];
64

@@ -15,10 +13,6 @@ const baseBundleConfig = makeBaseBundleConfig({
1513
outputFileBase: ({ name: entrypoint }) => `bundles/${entrypoint}${jsVersion === 'es5' ? '.es5' : ''}`,
1614
});
1715

18-
// TODO We only need `commonjs` for localforage (used in the offline plugin). Once that's fixed, this can come out.
19-
// CommonJS plugin docs: https://github.com/rollup/plugins/tree/master/packages/commonjs
20-
baseBundleConfig.plugins = insertAt(baseBundleConfig.plugins, -2, commonjs());
21-
2216
// this makes non-minified, minified, and minified-with-debug-logging versions of each bundle
2317
builds.push(...makeBundleConfigVariants(baseBundleConfig));
2418

packages/integrations/src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ export { CaptureConsole } from './captureconsole';
22
export { Debug } from './debug';
33
export { Dedupe } from './dedupe';
44
export { ExtraErrorData } from './extraerrordata';
5-
// eslint-disable-next-line deprecation/deprecation
6-
export { Offline } from './offline';
75
export { ReportingObserver } from './reportingobserver';
86
export { RewriteFrames } from './rewriteframes';
97
export { SessionTiming } from './sessiontiming';

packages/integrations/src/offline.ts

Lines changed: 0 additions & 178 deletions
This file was deleted.

0 commit comments

Comments
 (0)