Skip to content

Commit

Permalink
disable cache reset
Browse files Browse the repository at this point in the history
  • Loading branch information
Drew McMillan committed Apr 14, 2018
1 parent 0884300 commit 7d6f24b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ function runLighthouse (url, config, callback) {
'--output=json',
'--output-path=stdout',
'--disable-device-emulation',
'--disable-cpu-throttling',
'--disable-cpu-throttling',
'--disable-storage-reset',
'--disable-network-throttling',
'--chrome-flags=' + chromeFlags,
`--config-path=${mixedContent}`
Expand Down Expand Up @@ -153,7 +154,7 @@ function runLighthouse (url, config, callback) {
} else {
if (!displayedCategory) {
console.log();
console.log(category.name.bold.underline);
console.log(category.name.bold.underline + ` current page count: ${stats.pageCount}`);
displayedCategory = true
}
errorCount++
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "light-mc-crawler",
"version": "2.0.4",
"version": "2.0.8",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 7d6f24b

Please sign in to comment.