transpile svelte/shared.js by default

This commit is contained in:
Rich Harris
2018-06-15 10:38:14 -04:00
committed by GitHub
parent c061c3c4e9
commit 6fd9c0fecb

View File

@@ -39,7 +39,7 @@ export default {
// If we're building for production (npm run build // If we're building for production (npm run build
// instead of npm run dev), transpile and minify // instead of npm run dev), transpile and minify
production && buble({ exclude: 'node_modules/**' }), production && buble({ include: ['src/**', 'node_modules/svelte/shared.js'] }),
production && uglify() production && uglify()
] ]
}; };