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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()
]
};