Comparing version 5.5.0 to 5.6.0
@@ -311,3 +311,8 @@ "use strict"; | ||
}); | ||
return cache.list(opts.size).catch(e => { | ||
return cache.list(opts.size).catch({ | ||
code: 'ENOENT' | ||
}, () => { | ||
logger.always('No cached binary versions were found.'); | ||
process.exit(0); | ||
}).catch(e => { | ||
debug('cache list command failed with "%s"', e.message); | ||
@@ -314,0 +319,0 @@ util.logErrorExit1(e); |
{ | ||
"name": "cypress", | ||
"version": "5.5.0", | ||
"version": "5.6.0", | ||
"main": "index.js", | ||
@@ -22,3 +22,3 @@ "scripts": { | ||
"cli-table3": "~0.6.0", | ||
"commander": "^4.1.1", | ||
"commander": "^5.1.0", | ||
"common-tags": "^1.8.0", | ||
@@ -25,0 +25,0 @@ "debug": "^4.1.1", |
@@ -114,2 +114,7 @@ // Copied from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/methods/index.d.ts | ||
followRedirect?: boolean | ||
/** | ||
* If set, `cy.wait` can be used to await the request/response cycle to complete for this | ||
* request via `cy.wait('@alias')`. | ||
*/ | ||
alias?: string | ||
} | ||
@@ -116,0 +121,0 @@ |
Sorry, the diff of this file is too big to display
3794079
94554
+ Addedcommander@5.1.0(transitive)
- Removedcommander@4.1.1(transitive)
Updatedcommander@^5.1.0