File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
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
You can’t perform that action at this time.
0 commit comments