Comparing version 1.6.2 to 1.6.3
# Changelog | ||
## 1.6.3 | ||
- fix: avoid substring/superstring shadowing in regex (#32) thanks @mysport12! | ||
## 1.6.2 | ||
@@ -4,0 +7,0 @@ |
{ | ||
"name": "jetifier", | ||
"version": "1.6.2", | ||
"version": "1.6.3", | ||
"description": "jetifier from Android Studio, in npm package format", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -44,2 +44,7 @@ const { existsSync, readFileSync, readdirSync, statSync } = require('fs'); | ||
// Some mappings are substrings of other mappings, transform longest mappings first | ||
lines.sort(function(a, b){ | ||
return b.length - a.length; | ||
}); | ||
return lines; | ||
@@ -46,0 +51,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
2739820
88