Skip to content

Commit

Permalink
populatedb
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Jul 15, 2024
1 parent 482cc7d commit d7469a6
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 34 deletions.
1 change: 1 addition & 0 deletions cssdb.json
Original file line number Diff line number Diff line change
Expand Up @@ -2016,6 +2016,7 @@
"edge": "125",
"firefox": "118",
"ios_saf": "15.4",
"op_mob": "83",
"opera": "111",
"safari": "15.4"
},
Expand Down
1 change: 1 addition & 0 deletions cssdb.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2016,6 +2016,7 @@ export default [
"edge": "125",
"firefox": "118",
"ios_saf": "15.4",
"op_mob": "83",
"opera": "111",
"safari": "15.4"
},
Expand Down
52 changes: 20 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions utils/web-features-data.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import webFeatures from 'web-features';
import { features } from 'web-features';

export function applyWebFeaturesData(feature) {
const webFeatureName = feature['web-feature'];
if (!webFeatureName) {
return;
}

const webFeature = webFeatures[webFeatureName];
const webFeature = features[webFeatureName];
if (!webFeature) {
throw new Error(`Unknown web feature: ${webFeatureName}`);
}
Expand Down

0 comments on commit d7469a6

Please sign in to comment.