File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 43
43
"rollup" : " ^1.10.1" ,
44
44
"rollup-plugin-commonjs" : " ^9.3.4" ,
45
45
"rollup-plugin-license" : " ^0.8.1" ,
46
- "rollup-plugin-modify" : " ^3.0.0" ,
47
46
"rollup-plugin-node-resolve" : " ^4.2.3" ,
48
47
"rollup-plugin-terser" : " ^4.0.4" ,
49
48
"rollup-plugin-typescript2" : " ^0.21.0" ,
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import typescript from 'rollup-plugin-typescript2';
3
3
import license from 'rollup-plugin-license' ;
4
4
import resolve from 'rollup-plugin-node-resolve' ;
5
5
import commonjs from 'rollup-plugin-commonjs' ;
6
- import modify from 'rollup-plugin-modify' ;
7
6
8
7
const commitHash = require ( 'child_process' )
9
8
. execSync ( 'git rev-parse --short HEAD' , { encoding : 'utf-8' } )
@@ -47,11 +46,6 @@ const plugins = [
47
46
mainFields : [ 'module' ] ,
48
47
} ) ,
49
48
commonjs ( ) ,
50
- modify ( {
51
- // It's very difficult to use Symbol without polyfilling in IE10 and still making TypeScript behave correctly.
52
- // Just remove it and leave this space in there, so that SourceMaps are still correct.
53
- "this[Symbol.toStringTag] = '[object SyncPromise]';" : ' ' ,
54
- } ) ,
55
49
] ;
56
50
57
51
const bundleConfig = {
You can’t perform that action at this time.
0 commit comments