Skip to content
This repository was archived by the owner on Mar 14, 2020. It is now read-only.

Commit 982d806

Browse files
authored
feat: use Chrome 66.0.3359.181 (#8)
1 parent 517ddc2 commit 982d806

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/chromeConfig.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ exports.binary = {
66
binPath: binPath,
77
cachePath: getCachePath(),
88
fileName: 'headless-chromium',
9-
version: '66.0.3359.170',
9+
version: '66.0.3359.181',
1010
checksum: {
1111
algorithm: 'sha256',
12-
value: '4625285985506394d940f5e777e06317aed68b9db186ca9d61fcc6ce23cd5fe0'
12+
value: 'e3dcb79811e32832060a913ed133b9c2e8dcf2171c88c4a41f3bd059fbf8359c'
1313
}
1414
}
1515

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lighthouse-lambda",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "Run Google Chrome Lighthouse on AWS Lambda.",
55
"engines": {
66
"node": "8.10.x"

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports.handler = function (event, context, callback) {
1313
score: results.score,
1414
timing: results.timing
1515
})
16-
return chrome.kill().then(() => callback(null))
16+
return chrome.kill().then(() => callback(results.userAgent))
1717
})
1818
})
1919
.catch(callback)

0 commit comments

Comments
 (0)