babel-plugin-import
Advanced tools
Comparing version 1.3.0 to 1.3.1
@@ -72,3 +72,3 @@ 'use strict'; | ||
var methods = ['ImportDeclaration', 'CallExpression', 'MemberExpression', 'Property', 'VariableDeclarator', 'LogicalExpression', 'ConditionalExpression', 'IfStatement', 'ExpressionStatement', 'ReturnStatement', 'ExportDefaultDeclaration']; | ||
var methods = ['ImportDeclaration', 'CallExpression', 'MemberExpression', 'Property', 'VariableDeclarator', 'LogicalExpression', 'ConditionalExpression', 'IfStatement', 'ExpressionStatement', 'ReturnStatement', 'ExportDefaultDeclaration', 'BinaryExpression']; | ||
@@ -75,0 +75,0 @@ var ret = { |
@@ -238,2 +238,10 @@ 'use strict'; | ||
} | ||
}, { | ||
key: 'BinaryExpression', | ||
value: function BinaryExpression(path, _ref8) { | ||
var opts = _ref8.opts; | ||
var node = path.node; | ||
this.buildExpressionHandler(node, ['left', 'right'], path, opts); | ||
} | ||
}]); | ||
@@ -240,0 +248,0 @@ |
{ | ||
"name": "babel-plugin-import", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Component modular import plugin for babel.", | ||
@@ -5,0 +5,0 @@ "repository": { |
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
15877
315