Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Dec 9, 2022
1 parent bc2b9b1 commit 3dc4545
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vite/rollupLicensePlugin.ts
Expand Up @@ -34,8 +34,8 @@ export default function licensePlugin(
}
const licenses = new Set<string>()
const dependencyLicenseTexts = dependencies
.sort(({ name: _nameA }, { name: _nameB }) => {
return _nameA! > _nameB! ? 1 : _nameB! > _nameA! ? -1 : 0
.sort(({ name: nameA }, { name: nameB }) => {
return nameA! > nameB! ? 1 : nameB! > nameA! ? -1 : 0
})
.map(
({
Expand Down

0 comments on commit 3dc4545

Please sign in to comment.