Comparing version 3.14.0 to 3.14.1
@@ -169,3 +169,7 @@ /*********************************************************************** | ||
} else if (node instanceof AST_Dot) { | ||
add(node.property); | ||
var root = node; | ||
while (root.expression) { | ||
root = root.expression; | ||
} | ||
if (!(root.thedef && root.thedef.undeclared)) add(node.property); | ||
} else if (node instanceof AST_Sub) { | ||
@@ -172,0 +176,0 @@ addStrings(node.property, add); |
@@ -7,5 +7,5 @@ { | ||
"license": "BSD-2-Clause", | ||
"version": "3.14.0", | ||
"version": "3.14.1", | ||
"engines": { | ||
"node": ">=0.8.0" | ||
"node": ">=4.0.0" | ||
}, | ||
@@ -12,0 +12,0 @@ "maintainers": [ |
@@ -240,3 +240,3 @@ terser | ||
**Note:** THIS WILL PROBABLY BREAK YOUR CODE. Mangling property names | ||
**Note:** THIS *MIGHT* BREAK YOUR CODE. Mangling property names | ||
is a separate step, different from variable name mangling. Pass | ||
@@ -243,0 +243,0 @@ `--mangle-props` to enable it. It will mangle all properties in the |
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
2291489
22704