Skip to content

Commit

Permalink
Sort compat_features in public API (#1457)
Browse files Browse the repository at this point in the history
  • Loading branch information
foolip committed Jul 18, 2024
1 parent 79e48ad commit e9d971b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,13 @@ for (const [key, data] of yamlEntries('features')) {
}
}

// Check that no BCD key is used twice until the meaning is made clear in
// https://github.com/web-platform-dx/web-features/issues/1173.
if (data.compat_features) {
// Sort compat_features so that grouping and ordering in dist files has
// no effect on what web-features users see.
data.compat_features.sort();

// Check that no BCD key is used twice until the meaning is made clear in
// https://github.com/web-platform-dx/web-features/issues/1173.
for (const bcdKey of data.compat_features) {
const otherKey = bcdToFeatureId.get(bcdKey);
if (otherKey) {
Expand Down

0 comments on commit e9d971b

Please # to comment.