Comparing version 0.6.0 to 0.6.1
# buble changelog | ||
## 0.6.1 | ||
* Always remember to close parens in template strings | ||
## 0.6.0 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "buble", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "The blazing fast, batteries-included ES2015 compiler", | ||
@@ -5,0 +5,0 @@ "main": "dist/buble.umd.js", |
@@ -69,3 +69,7 @@ import Node from '../Node.js'; | ||
code.overwrite( lastIndex, this.end, parenthesise ? ')' : '' ); | ||
let close = ''; | ||
if ( closeParens ) close += ')'; | ||
if ( parenthesise ) close += ')'; | ||
code.overwrite( lastIndex, this.end, close ); | ||
} | ||
@@ -72,0 +76,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1202953
10913