From 9d9b03aa1aad055f65e69c65838b4bcf88699708 Mon Sep 17 00:00:00 2001 From: Declan de Wet Date: Mon, 31 Oct 2016 09:17:51 +0200 Subject: [PATCH] swop rollup plugin order --- rollup.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 0441e5b..fe82f93 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -8,10 +8,10 @@ export default { dest: './lib/index.js', moduleName: 'VueMeta', plugins: [ - buble(), nodeResolve({ jsnext: true }), - commonjs() + commonjs(), + buble() ] }