From dab8512ecf4417a05cba2c584df02d5c78f89932 Mon Sep 17 00:00:00 2001 From: Conduitry Date: Wed, 16 May 2018 16:11:37 -0400 Subject: [PATCH] update rollup config - fix deprecated syntax --- rollup.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 59e883b26c..5928471f4a 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -62,12 +62,12 @@ export default [ input: ['src/cli/index.ts'], output: { dir: 'cli', - format: 'cjs' + format: 'cjs', + paths: { + svelte: '../compiler/svelte.js' + } }, external: ['fs', 'path', 'os', 'svelte'], - paths: { - svelte: '../compiler/svelte.js' - }, plugins: [ json(), commonjs(),