File tree 3 files changed +0
-7
lines changed 3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 1
- import commonjs from '@rollup/plugin-commonjs' ;
2
1
import replace from '@rollup/plugin-replace' ;
3
2
4
3
import { makeBaseBundleConfig , makeBundleConfigVariants } from '../../rollup/index.js' ;
@@ -19,8 +18,6 @@ const baseBundleConfig = makeBaseBundleConfig({
19
18
__SENTRY_REPLAY_VERSION__ : JSON . stringify ( pkg . version ) ,
20
19
} ,
21
20
} ) ,
22
- // lodash.debounce is a CJS module, so we need to convert it to ESM first
23
- commonjs ( ) ,
24
21
] ,
25
22
} ,
26
23
} ) ;
Original file line number Diff line number Diff line change 1
1
import path from 'path' ;
2
2
3
- import commonjs from '@rollup/plugin-commonjs' ;
4
3
import replace from '@rollup/plugin-replace' ;
5
4
6
5
import { makeBaseNPMConfig , makeNPMConfigVariants } from '../../rollup/index' ;
@@ -19,8 +18,6 @@ export default makeNPMConfigVariants(
19
18
__SENTRY_REPLAY_VERSION__ : JSON . stringify ( pkg . version ) ,
20
19
} ,
21
20
} ) ,
22
- // lodash.debounce is a CJS module, so we need to convert it to ESM first
23
- commonjs ( ) ,
24
21
] ,
25
22
output : {
26
23
// set exports to 'named' or 'auto' so that rollup doesn't warn about
Original file line number Diff line number Diff line change @@ -873,7 +873,6 @@ export class ReplayContainer implements ReplayContainerInterface {
873
873
// It's possible there are other flush requests queued and waiting for it
874
874
// to resolve. We want to reduce all outstanding requests (as well as any
875
875
// new flush requests that occur within a second of the locked flush
876
- // completing) into a single flush.thin a second of the locked flush
877
876
// completing) into a single flush.
878
877
879
878
try {
You can’t perform that action at this time.
0 commit comments