Skip to content

Commit

Permalink
Merge pull request #825 from Webperf-se/sitespeed-software-distinct
Browse files Browse the repository at this point in the history
Software Test - Make javascript versions detection distinct
  • Loading branch information
7h3Rabbit authored Dec 28, 2024
2 parents cbb978b + 211bbfa commit 846193f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions chrome-versions.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ module.exports = async function (context, commands) {
}

versions = {
'jquery': jquery_versions,
'modernizr': modernizr_versions,
'core-js': core_js_versions,
'next.js': next_versions,
'alpinejs': alpine_versions
'jquery': [...new Set(jquery_versions)],
'modernizr': [...new Set(modernizr_versions)],
'core-js': [...new Set(core_js_versions)],
'next.js': [...new Set(next_versions)],
'alpinejs': [...new Set(alpine_versions)]
}


Expand Down

0 comments on commit 846193f

Please sign in to comment.