File tree Expand file tree Collapse file tree 2 files changed +0
-34
lines changed Expand file tree Collapse file tree 2 files changed +0
-34
lines changed Original file line number Diff line number Diff line change 67
67
"prettier-eslint-cli" : " ^8.0.1" ,
68
68
"react" : " ^19.1.0" ,
69
69
"rollup" : " ^4.41.1" ,
70
- "rollup-plugin-babel" : " ^4.4.0" ,
71
70
"rollup-plugin-commonjs" : " ^10.1.0" ,
72
- "rollup-plugin-flow" : " ^1.1.1" ,
73
71
"rollup-plugin-node-resolve" : " ^5.2.0" ,
74
72
"rollup-plugin-replace" : " ^2.2.0" ,
75
73
"rollup-plugin-typescript2" : " ^0.36.0" ,
Original file line number Diff line number Diff line change 1
1
import resolve from 'rollup-plugin-node-resolve'
2
- import babel from 'rollup-plugin-babel'
3
2
import typescript from 'rollup-plugin-typescript2'
4
3
import commonjs from 'rollup-plugin-commonjs'
5
4
import { uglify } from 'rollup-plugin-uglify'
@@ -60,37 +59,6 @@ export default {
60
59
}
61
60
} ) ,
62
61
commonjs ( { include : 'node_modules/**' } ) ,
63
- babel ( {
64
- exclude : 'node_modules/**' ,
65
- babelrc : false ,
66
- runtimeHelpers : true ,
67
- presets : [
68
- [
69
- '@babel/preset-env' ,
70
- {
71
- modules : false ,
72
- loose : true
73
- }
74
- ]
75
- ] ,
76
- plugins : [
77
- [ '@babel/plugin-transform-runtime' , { useESModules : ! cjs } ] ,
78
- '@babel/plugin-syntax-dynamic-import' ,
79
- '@babel/plugin-syntax-import-meta' ,
80
- '@babel/plugin-proposal-class-properties' ,
81
- '@babel/plugin-proposal-json-strings' ,
82
- [
83
- '@babel/plugin-proposal-decorators' ,
84
- {
85
- legacy : true
86
- }
87
- ] ,
88
- '@babel/plugin-proposal-function-sent' ,
89
- '@babel/plugin-proposal-export-namespace-from' ,
90
- '@babel/plugin-proposal-numeric-separator' ,
91
- '@babel/plugin-proposal-throw-expressions'
92
- ]
93
- } ) ,
94
62
umd
95
63
? replace ( {
96
64
'process.env.NODE_ENV' : JSON . stringify (
You can’t perform that action at this time.
0 commit comments