File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6363 "devDependencies" : {
6464 "@babel/core" : " ^7.17.8" ,
6565 "@babel/preset-env" : " ^7.16.11" ,
66- "@rollup/plugin-buble " : " ^0.21.3 " ,
66+ "@rollup/plugin-babel " : " ^5.3.1 " ,
6767 "@rollup/plugin-commonjs" : " ^19.0.2" ,
6868 "@rollup/plugin-node-resolve" : " ^13.1.3" ,
6969 "@rollup/plugin-replace" : " ^2.4.2" ,
Original file line number Diff line number Diff line change 1- import buble from '@rollup/plugin-buble '
1+ import { babel } from '@rollup/plugin-babel '
22import replace from '@rollup/plugin-replace'
33import resolve from '@rollup/plugin-node-resolve'
44import commonjs from '@rollup/plugin-commonjs'
@@ -68,7 +68,7 @@ function createEntry(config) {
6868 } ) )
6969
7070 if ( config . transpile !== false ) {
71- c . plugins . push ( buble ( { transforms : { asyncAwait : false , forOf : false } } ) )
71+ c . plugins . push ( babel ( { babelHelpers : 'bundled' } ) )
7272 }
7373
7474 c . plugins . push ( resolve ( ) )
You can’t perform that action at this time.
0 commit comments