From 6fd9c0fecb4deeedace4ac4a78a37e84632e9d9e Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Fri, 15 Jun 2018 10:38:14 -0400 Subject: [PATCH] transpile svelte/shared.js by default --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index b57f2f9..af0f3cb 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -39,7 +39,7 @@ export default { // If we're building for production (npm run build // instead of npm run dev), transpile and minify - production && buble({ exclude: 'node_modules/**' }), + production && buble({ include: ['src/**', 'node_modules/svelte/shared.js'] }), production && uglify() ] };