File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 8787 "puppeteer" : " ^9.1.1" ,
8888 "regenerator-runtime" : " ^0.13.9" ,
8989 "rollup" : " ^2.70.1" ,
90- "rollup-plugin-regenerator" : " ^0.6.0" ,
9190 "rollup-plugin-terser" : " ^7.0.2" ,
9291 "semver" : " ^7.3.5" ,
9392 "start-server-and-test" : " ^1.14.0" ,
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import replace from '@rollup/plugin-replace'
33import resolve from '@rollup/plugin-node-resolve'
44import commonjs from '@rollup/plugin-commonjs'
55import { terser } from 'rollup-plugin-terser'
6- import regenerator from 'rollup-plugin-regenerator'
76import pkg from './package.json'
87
98const banner = `/*!
@@ -33,7 +32,7 @@ function createEntry(config) {
3332 const c = {
3433 external : [ 'vue' ] ,
3534 input : config . input ,
36- plugins : [ regenerator ( ) ] ,
35+ plugins : [ ] ,
3736 output : {
3837 banner,
3938 file : config . file ,
@@ -69,7 +68,7 @@ function createEntry(config) {
6968 } ) )
7069
7170 if ( config . transpile !== false ) {
72- c . plugins . push ( buble ( ) )
71+ c . plugins . push ( buble ( { transforms : { asyncAwait : false , forOf : false } } ) )
7372 }
7473
7574 c . plugins . push ( resolve ( ) )
You can’t perform that action at this time.
0 commit comments