Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ahabhgk committed Feb 6, 2024
1 parent 9da0510 commit 0aaa497
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/dependencies/HarmonyImportSpecifierDependency.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ class HarmonyImportSpecifierDependency extends HarmonyImportDependency {
const refs = [];
for (const key of this.referencedPropertiesInDestructuring) {
refs.push({
name: ids ? ids.concat([key]) : [key]
name: ids ? ids.concat([key]) : [key],
canMangle: ids ? true : false
});
}
return refs;
Expand Down

0 comments on commit 0aaa497

Please sign in to comment.