Skip to content

Commit 2082904

Browse files
committed
Fix npm -ci
1 parent 9b89223 commit 2082904

File tree

2 files changed

+0
-34
lines changed

2 files changed

+0
-34
lines changed

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,7 @@
6767
"prettier-eslint-cli": "^8.0.1",
6868
"react": "^19.1.0",
6969
"rollup": "^4.41.1",
70-
"rollup-plugin-babel": "^4.4.0",
7170
"rollup-plugin-commonjs": "^10.1.0",
72-
"rollup-plugin-flow": "^1.1.1",
7371
"rollup-plugin-node-resolve": "^5.2.0",
7472
"rollup-plugin-replace": "^2.2.0",
7573
"rollup-plugin-typescript2": "^0.36.0",

rollup.config.mjs

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import resolve from 'rollup-plugin-node-resolve'
2-
import babel from 'rollup-plugin-babel'
32
import typescript from 'rollup-plugin-typescript2'
43
import commonjs from 'rollup-plugin-commonjs'
54
import { uglify } from 'rollup-plugin-uglify'
@@ -60,37 +59,6 @@ export default {
6059
}
6160
}),
6261
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-
}),
9462
umd
9563
? replace({
9664
'process.env.NODE_ENV': JSON.stringify(

0 commit comments

Comments
 (0)