Skip to content

Commit

Permalink
Merge pull request #411 from sveltejs/disable-unneeded-buble-transforms
Browse files Browse the repository at this point in the history
Disable Buble transforms not needed for Node 4
  • Loading branch information
Rich-Harris authored Mar 27, 2017
2 parents 0df3cf6 + d779017 commit b9d3c23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rollup/rollup.config.main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export default {
buble({
include: 'src/**',
exclude: 'src/shared/**',
transforms: {
dangerousTaggedTemplateString: true
target: {
node: 4
}
})
],
Expand Down
4 changes: 2 additions & 2 deletions rollup/rollup.config.ssr.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export default {
buble({
include: 'src/**',
exclude: 'src/shared/**',
transforms: {
dangerousTaggedTemplateString: true
target: {
node: 4
}
})
],
Expand Down

0 comments on commit b9d3c23

Please sign in to comment.