Skip to content

Commit

Permalink
deps(js-library-detector): upgrade to 6.5.0 (#13969)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark committed May 5, 2022
1 parent 3159565 commit 0fcf4a7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
9 changes: 4 additions & 5 deletions lighthouse-core/lib/stack-packs.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@ const stackPacksToInclude = [
packId: 'wordpress',
requiredStacks: ['js:wordpress'],
},
// waiting for https://github.com/johnmichel/Library-Detector-for-Chrome/pull/193
// {
// packId: 'ezoic',
// requiredStacks: ['js:ezoic'],
// },
{
packId: 'ezoic',
requiredStacks: ['js:ezoic'],
},
{
packId: 'drupal',
requiredStacks: ['js:drupal'],
Expand Down
3 changes: 1 addition & 2 deletions lighthouse-core/test/lib/stack-packs-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ describe('stack-packs lib', () => {
const result = lighthouseStackPacksDep
.filter(p => !stackPacksLib.stackPacksToInclude.find(p2 => p2.packId === p.id))
.map(p => p.id);
// TODO: waiting for this
expect(result).toEqual(['ezoic']);
expect(result).toEqual([]);
});
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
"http-link-header": "^0.8.0",
"intl-messageformat": "^4.4.0",
"jpeg-js": "^0.4.3",
"js-library-detector": "^6.4.0",
"js-library-detector": "^6.5.0",
"lighthouse-logger": "^1.3.0",
"lighthouse-stack-packs": "^1.8.1",
"lodash": "^4.17.21",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5349,10 +5349,10 @@ jpeg-js@^0.4.1:
resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.1.tgz#937a3ae911eb6427f151760f8123f04c8bfe6ef7"
integrity sha512-jA55yJiB5tCXEddos8JBbvW+IMrqY0y1tjjx9KNVtA+QPmu7ND5j0zkKopClpUTsaETL135uOM2XfcYG4XRjmw==

js-library-detector@^6.4.0:
version "6.4.0"
resolved "https://registry.yarnpkg.com/js-library-detector/-/js-library-detector-6.4.0.tgz#63e165cb84a4a0a7f7bbf1e97d60623921baae14"
integrity sha512-NB2sYpmgqiTd7PNNhgp6bnEZmjvTUdAbzxABvYXWLpTL/t158T6mPnD8uYNd0FDP73YWyMrTYDvPxqdvCTbv2g==
js-library-detector@^6.5.0:
version "6.5.0"
resolved "https://registry.yarnpkg.com/js-library-detector/-/js-library-detector-6.5.0.tgz#96de02e9926a185c2d7a9a6967286d2ba20b5f79"
integrity sha512-Kq7VckJ5kb26kHMAu1sDO8t2qr7M5Uw6Gf7fVGtu1YceoHdqTcobwnB5kStcktusPuPmiCE8PbCaiLzhiBsSAw==

js-tokens@^4.0.0:
version "4.0.0"
Expand Down

0 comments on commit 0fcf4a7

Please sign in to comment.