From e723cc5c468317341ce7c44c695e3dceec3522d9 Mon Sep 17 00:00:00 2001 From: Rich-Harris Date: Sat, 10 Sep 2016 12:29:34 -0400 Subject: [PATCH] only transpile acorn 4 down to node 4 support level --- rollup.config.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index f55dc7c..a8ac2c8 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -22,11 +22,7 @@ export default { entry: 'src/rollup.js', plugins: [ buble({ - include: [ 'node_modules/acorn/**' ] - }), - - buble({ - include: [ 'src/**' ], + include: [ 'src/**', 'node_modules/acorn/**' ], target: { node: 4 }