angular-estree-parser
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="1.1.1"></a> | ||
## [1.1.1](https://github.com/ikatyang/angular-estree-parser/compare/v1.1.0...v1.1.1) (2018-10-26) | ||
### Bug Fixes | ||
* **transform:** Binary (`&&`, `||`) -> LogicalExpression ([#8](https://github.com/ikatyang/angular-estree-parser/issues/8)) ([8e954c1](https://github.com/ikatyang/angular-estree-parser/commit/8e954c1)) | ||
<a name="1.1.0"></a> | ||
@@ -7,0 +17,0 @@ # [1.1.0](https://github.com/ikatyang/angular-estree-parser/compare/v1.0.0...v1.1.0) (2018-10-19) |
@@ -15,7 +15,13 @@ "use strict"; | ||
}) | ||
: _c('BinaryExpression', { | ||
left: _t(left), | ||
right: _t(right), | ||
operator: operation, | ||
}); | ||
: operation === '&&' || operation === '||' | ||
? _c('LogicalExpression', { | ||
left: _t(left), | ||
right: _t(right), | ||
operator: operation, | ||
}) | ||
: _c('BinaryExpression', { | ||
left: _t(left), | ||
right: _t(right), | ||
operator: operation, | ||
}); | ||
} | ||
@@ -22,0 +28,0 @@ case 'BindingPipe': { |
{ | ||
"name": "angular-estree-parser", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A parser that converts Angular source code into an ESTree-compatible form", | ||
@@ -35,3 +35,3 @@ "keywords": [], | ||
"@types/babel__parser": "7.0.0", | ||
"@types/jest": "23.3.5", | ||
"@types/jest": "23.3.7", | ||
"@types/prettier": "1.13.2", | ||
@@ -38,0 +38,0 @@ "jest": "23.6.0", |
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
33991
776