[6.8] update chromedriver to 80.0.1 (#57602) (#57796)

* update chromedriver to 80.0.1 (#57602)

* update index.js

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
Dmitry Lemeshko 2020-04-05 17:04:06 +03:00 committed by GitHub
parent 7771f2c4d5
commit fef118d23f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 370 additions and 142 deletions

View file

@ -340,7 +340,7 @@
"chance": "1.0.10",
"cheerio": "0.22.0",
"chokidar": "1.6.0",
"chromedriver": "79.0.0",
"chromedriver": "80.0.1",
"classnames": "2.2.5",
"dedent": "^0.7.0",
"delete-empty": "^2.0.0",

View file

@ -32120,7 +32120,7 @@ Object.defineProperty(exports, 'buildProductionProjects', {
}
});
var _prepare_project_dependencies = __webpack_require__(553);
var _prepare_project_dependencies = __webpack_require__(554);
Object.defineProperty(exports, 'prepareExternalProjectDependencies', {
enumerable: true,
@ -32305,8 +32305,8 @@ const EventEmitter = __webpack_require__(45);
const path = __webpack_require__(16);
const arrify = __webpack_require__(374);
const globby = __webpack_require__(375);
const cpFile = __webpack_require__(544);
const CpyError = __webpack_require__(552);
const cpFile = __webpack_require__(545);
const CpyError = __webpack_require__(553);
const preprocessSrcPath = (srcPath, options) => options.cwd ? path.resolve(options.cwd, srcPath) : srcPath;
@ -32428,8 +32428,8 @@ module.exports = function (val) {
const arrayUnion = __webpack_require__(141);
const glob = __webpack_require__(36);
const fastGlob = __webpack_require__(376);
const dirGlob = __webpack_require__(539);
const gitignore = __webpack_require__(540);
const dirGlob = __webpack_require__(540);
const gitignore = __webpack_require__(541);
const DEFAULT_FILTER = () => false;
@ -32578,10 +32578,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
var merge2 = __webpack_require__(378);
var optionsManager = __webpack_require__(379);
var taskManager = __webpack_require__(380);
var reader_async_1 = __webpack_require__(518);
var reader_stream_1 = __webpack_require__(537);
var reader_sync_1 = __webpack_require__(538);
var arrayUtils = __webpack_require__(534);
var reader_async_1 = __webpack_require__(519);
var reader_stream_1 = __webpack_require__(538);
var reader_sync_1 = __webpack_require__(539);
var arrayUtils = __webpack_require__(535);
/**
* Returns a set of works based on provided tasks and class of the reader.
*/
@ -33308,9 +33308,9 @@ var extend = __webpack_require__(398);
*/
var compilers = __webpack_require__(492);
var parsers = __webpack_require__(514);
var cache = __webpack_require__(515);
var utils = __webpack_require__(516);
var parsers = __webpack_require__(515);
var cache = __webpack_require__(516);
var utils = __webpack_require__(517);
var MAX_LENGTH = 1024 * 64;
/**
@ -50800,8 +50800,8 @@ var toRegex = __webpack_require__(389);
var compilers = __webpack_require__(505);
var parsers = __webpack_require__(511);
var Extglob = __webpack_require__(513);
var utils = __webpack_require__(512);
var Extglob = __webpack_require__(514);
var utils = __webpack_require__(513);
var MAX_LENGTH = 1024 * 64;
/**
@ -51909,8 +51909,8 @@ exports.createRegex = function(pattern, include) {
var brackets = __webpack_require__(506);
var define = __webpack_require__(500);
var utils = __webpack_require__(512);
var define = __webpack_require__(512);
var utils = __webpack_require__(513);
/**
* Characters to use in text regex (we want to "not" match
@ -52068,6 +52068,44 @@ module.exports = parsers;
/* 512 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/*!
* define-property <https://github.com/jonschlinkert/define-property>
*
* Copyright (c) 2015, 2017, Jon Schlinkert.
* Released under the MIT License.
*/
var isDescriptor = __webpack_require__(420);
module.exports = function defineProperty(obj, prop, val) {
if (typeof obj !== 'object' && typeof obj !== 'function') {
throw new TypeError('expected an object or function.');
}
if (typeof prop !== 'string') {
throw new TypeError('expected `prop` to be a string.');
}
if (isDescriptor(val) && ('set' in val || 'get' in val)) {
return Object.defineProperty(obj, prop, val);
}
return Object.defineProperty(obj, prop, {
configurable: true,
enumerable: false,
writable: true,
value: val
});
};
/***/ }),
/* 513 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -52141,7 +52179,7 @@ utils.createRegex = function(str) {
/***/ }),
/* 513 */
/* 514 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -52152,7 +52190,7 @@ utils.createRegex = function(str) {
*/
var Snapdragon = __webpack_require__(428);
var define = __webpack_require__(500);
var define = __webpack_require__(512);
var extend = __webpack_require__(398);
/**
@ -52226,7 +52264,7 @@ module.exports = Extglob;
/***/ }),
/* 514 */
/* 515 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -52316,14 +52354,14 @@ function textRegex(pattern) {
/***/ }),
/* 515 */
/* 516 */
/***/ (function(module, exports, __webpack_require__) {
module.exports = new (__webpack_require__(498))();
/***/ }),
/* 516 */
/* 517 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -52337,11 +52375,11 @@ var path = __webpack_require__(16);
*/
var Snapdragon = __webpack_require__(428);
utils.define = __webpack_require__(500);
utils.define = __webpack_require__(512);
utils.diff = __webpack_require__(501);
utils.extend = __webpack_require__(398);
utils.pick = __webpack_require__(502);
utils.typeOf = __webpack_require__(517);
utils.typeOf = __webpack_require__(518);
utils.unique = __webpack_require__(401);
/**
@ -52639,7 +52677,7 @@ utils.unixify = function(options) {
/***/ }),
/* 517 */
/* 518 */
/***/ (function(module, exports) {
var toString = Object.prototype.toString;
@ -52774,7 +52812,7 @@ function isBuffer(val) {
/***/ }),
/* 518 */
/* 519 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -52790,8 +52828,8 @@ var __extends = (this && this.__extends) || (function () {
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var readdir = __webpack_require__(519);
var reader_1 = __webpack_require__(532);
var readdir = __webpack_require__(520);
var reader_1 = __webpack_require__(533);
var ReaderAsync = /** @class */ (function (_super) {
__extends(ReaderAsync, _super);
function ReaderAsync() {
@ -52827,15 +52865,15 @@ exports.default = ReaderAsync;
/***/ }),
/* 519 */
/* 520 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
const readdirSync = __webpack_require__(520);
const readdirAsync = __webpack_require__(528);
const readdirStream = __webpack_require__(531);
const readdirSync = __webpack_require__(521);
const readdirAsync = __webpack_require__(529);
const readdirStream = __webpack_require__(532);
module.exports = exports = readdirAsyncPath;
exports.readdir = exports.readdirAsync = exports.async = readdirAsyncPath;
@ -52919,7 +52957,7 @@ function readdirStreamStat (dir, options) {
/***/ }),
/* 520 */
/* 521 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -52927,11 +52965,11 @@ function readdirStreamStat (dir, options) {
module.exports = readdirSync;
const DirectoryReader = __webpack_require__(521);
const DirectoryReader = __webpack_require__(522);
let syncFacade = {
fs: __webpack_require__(526),
forEach: __webpack_require__(527),
fs: __webpack_require__(527),
forEach: __webpack_require__(528),
sync: true
};
@ -52960,7 +52998,7 @@ function readdirSync (dir, options, internalOptions) {
/***/ }),
/* 521 */
/* 522 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -52969,9 +53007,9 @@ function readdirSync (dir, options, internalOptions) {
const Readable = __webpack_require__(28).Readable;
const EventEmitter = __webpack_require__(45).EventEmitter;
const path = __webpack_require__(16);
const normalizeOptions = __webpack_require__(522);
const stat = __webpack_require__(524);
const call = __webpack_require__(525);
const normalizeOptions = __webpack_require__(523);
const stat = __webpack_require__(525);
const call = __webpack_require__(526);
/**
* Asynchronously reads the contents of a directory and streams the results
@ -53347,14 +53385,14 @@ module.exports = DirectoryReader;
/***/ }),
/* 522 */
/* 523 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
const path = __webpack_require__(16);
const globToRegExp = __webpack_require__(523);
const globToRegExp = __webpack_require__(524);
module.exports = normalizeOptions;
@ -53531,7 +53569,7 @@ function normalizeOptions (options, internalOptions) {
/***/ }),
/* 523 */
/* 524 */
/***/ (function(module, exports) {
module.exports = function (glob, opts) {
@ -53668,13 +53706,13 @@ module.exports = function (glob, opts) {
/***/ }),
/* 524 */
/* 525 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
const call = __webpack_require__(525);
const call = __webpack_require__(526);
module.exports = stat;
@ -53749,7 +53787,7 @@ function symlinkStat (fs, path, lstats, callback) {
/***/ }),
/* 525 */
/* 526 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -53810,14 +53848,14 @@ function callOnce (fn) {
/***/ }),
/* 526 */
/* 527 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
const fs = __webpack_require__(23);
const call = __webpack_require__(525);
const call = __webpack_require__(526);
/**
* A facade around {@link fs.readdirSync} that allows it to be called
@ -53881,7 +53919,7 @@ exports.lstat = function (path, callback) {
/***/ }),
/* 527 */
/* 528 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -53910,7 +53948,7 @@ function syncForEach (array, iterator, done) {
/***/ }),
/* 528 */
/* 529 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -53918,12 +53956,12 @@ function syncForEach (array, iterator, done) {
module.exports = readdirAsync;
const maybe = __webpack_require__(529);
const DirectoryReader = __webpack_require__(521);
const maybe = __webpack_require__(530);
const DirectoryReader = __webpack_require__(522);
let asyncFacade = {
fs: __webpack_require__(23),
forEach: __webpack_require__(530),
forEach: __webpack_require__(531),
async: true
};
@ -53965,7 +54003,7 @@ function readdirAsync (dir, options, callback, internalOptions) {
/***/ }),
/* 529 */
/* 530 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -53992,7 +54030,7 @@ module.exports = function maybe (cb, promise) {
/***/ }),
/* 530 */
/* 531 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54028,7 +54066,7 @@ function asyncForEach (array, iterator, done) {
/***/ }),
/* 531 */
/* 532 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54036,11 +54074,11 @@ function asyncForEach (array, iterator, done) {
module.exports = readdirStream;
const DirectoryReader = __webpack_require__(521);
const DirectoryReader = __webpack_require__(522);
let streamFacade = {
fs: __webpack_require__(23),
forEach: __webpack_require__(530),
forEach: __webpack_require__(531),
async: true
};
@ -54060,15 +54098,15 @@ function readdirStream (dir, options, internalOptions) {
/***/ }),
/* 532 */
/* 533 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var path = __webpack_require__(16);
var deep_1 = __webpack_require__(533);
var entry_1 = __webpack_require__(536);
var deep_1 = __webpack_require__(534);
var entry_1 = __webpack_require__(537);
var Reader = /** @class */ (function () {
function Reader(options) {
this.options = options;
@ -54134,14 +54172,14 @@ exports.default = Reader;
/***/ }),
/* 533 */
/* 534 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var arrayUtils = __webpack_require__(534);
var pathUtils = __webpack_require__(535);
var arrayUtils = __webpack_require__(535);
var pathUtils = __webpack_require__(536);
var patternUtils = __webpack_require__(382);
var DeepFilter = /** @class */ (function () {
function DeepFilter(options, micromatchOptions) {
@ -54217,7 +54255,7 @@ exports.default = DeepFilter;
/***/ }),
/* 534 */
/* 535 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54240,7 +54278,7 @@ exports.max = max;
/***/ }),
/* 535 */
/* 536 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54258,7 +54296,7 @@ exports.isDotDirectory = isDotDirectory;
/***/ }),
/* 536 */
/* 537 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54336,7 +54374,7 @@ exports.default = DeepFilter;
/***/ }),
/* 537 */
/* 538 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54353,8 +54391,8 @@ var __extends = (this && this.__extends) || (function () {
})();
Object.defineProperty(exports, "__esModule", { value: true });
var stream = __webpack_require__(28);
var readdir = __webpack_require__(519);
var reader_1 = __webpack_require__(532);
var readdir = __webpack_require__(520);
var reader_1 = __webpack_require__(533);
var TransformStream = /** @class */ (function (_super) {
__extends(TransformStream, _super);
function TransformStream(reader) {
@ -54397,7 +54435,7 @@ exports.default = ReaderStream;
/***/ }),
/* 538 */
/* 539 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54413,8 +54451,8 @@ var __extends = (this && this.__extends) || (function () {
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var readdir = __webpack_require__(519);
var reader_1 = __webpack_require__(532);
var readdir = __webpack_require__(520);
var reader_1 = __webpack_require__(533);
var ReaderSync = /** @class */ (function (_super) {
__extends(ReaderSync, _super);
function ReaderSync() {
@ -54449,7 +54487,7 @@ exports.default = ReaderSync;
/***/ }),
/* 539 */
/* 540 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54504,7 +54542,7 @@ module.exports.sync = (input, opts) => {
/***/ }),
/* 540 */
/* 541 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -54512,9 +54550,9 @@ module.exports.sync = (input, opts) => {
const fs = __webpack_require__(23);
const path = __webpack_require__(16);
const fastGlob = __webpack_require__(376);
const gitIgnore = __webpack_require__(541);
const pify = __webpack_require__(542);
const slash = __webpack_require__(543);
const gitIgnore = __webpack_require__(542);
const pify = __webpack_require__(543);
const slash = __webpack_require__(544);
const DEFAULT_IGNORE = [
'**/node_modules/**',
@ -54606,7 +54644,7 @@ module.exports.sync = o => {
/***/ }),
/* 541 */
/* 542 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -55038,7 +55076,7 @@ typeof process !== 'undefined' && (process.env && process.env.IGNORE_TEST_WIN32
/***/ }),
/* 542 */
/* 543 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -55129,7 +55167,7 @@ module.exports = (obj, opts) => {
/***/ }),
/* 543 */
/* 544 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -55147,17 +55185,17 @@ module.exports = function (str) {
/***/ }),
/* 544 */
/* 545 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
const path = __webpack_require__(16);
const fsConstants = __webpack_require__(23).constants;
const {Buffer} = __webpack_require__(545);
const CpFileError = __webpack_require__(547);
const fs = __webpack_require__(549);
const ProgressEmitter = __webpack_require__(551);
const {Buffer} = __webpack_require__(546);
const CpFileError = __webpack_require__(548);
const fs = __webpack_require__(550);
const ProgressEmitter = __webpack_require__(552);
module.exports = (src, dest, opts) => {
if (!src || !dest) {
@ -55307,11 +55345,11 @@ module.exports.sync = (src, dest, opts) => {
/***/ }),
/* 545 */
/* 546 */
/***/ (function(module, exports, __webpack_require__) {
/* eslint-disable node/no-deprecated-api */
var buffer = __webpack_require__(546)
var buffer = __webpack_require__(547)
var Buffer = buffer.Buffer
// alternative to using Object.keys for old browsers
@ -55375,18 +55413,18 @@ SafeBuffer.allocUnsafeSlow = function (size) {
/***/ }),
/* 546 */
/* 547 */
/***/ (function(module, exports) {
module.exports = require("buffer");
/***/ }),
/* 547 */
/* 548 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
const NestedError = __webpack_require__(548);
const NestedError = __webpack_require__(549);
class CpFileError extends NestedError {
constructor(message, nested) {
@ -55400,7 +55438,7 @@ module.exports = CpFileError;
/***/ }),
/* 548 */
/* 549 */
/***/ (function(module, exports, __webpack_require__) {
var inherits = __webpack_require__(43);
@ -55454,15 +55492,15 @@ module.exports = NestedError;
/***/ }),
/* 549 */
/* 550 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
const fs = __webpack_require__(22);
const makeDir = __webpack_require__(91);
const pify = __webpack_require__(550);
const CpFileError = __webpack_require__(547);
const pify = __webpack_require__(551);
const CpFileError = __webpack_require__(548);
const fsP = pify(fs);
@ -55607,7 +55645,7 @@ if (fs.copyFileSync) {
/***/ }),
/* 550 */
/* 551 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -55698,7 +55736,7 @@ module.exports = (obj, opts) => {
/***/ }),
/* 551 */
/* 552 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
@ -55739,12 +55777,12 @@ module.exports = ProgressEmitter;
/***/ }),
/* 552 */
/* 553 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
const NestedError = __webpack_require__(548);
const NestedError = __webpack_require__(549);
class CpyError extends NestedError {
constructor(message, nested) {
@ -55758,7 +55796,7 @@ module.exports = CpyError;
/***/ }),
/* 553 */
/* 554 */
/***/ (function(module, exports, __webpack_require__) {
"use strict";

274
yarn.lock
View file

@ -1230,6 +1230,27 @@
call-me-maybe "^1.0.1"
glob-to-regexp "^0.3.0"
"@nodelib/fs.scandir@2.1.3":
version "2.1.3"
resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz#3a582bdb53804c6ba6d146579c46e52130cf4a3b"
integrity sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==
dependencies:
"@nodelib/fs.stat" "2.0.3"
run-parallel "^1.1.9"
"@nodelib/fs.stat@2.0.3", "@nodelib/fs.stat@^2.0.2":
version "2.0.3"
resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz#34dc5f4cabbc720f4e60f75a747e7ecd6c175bd3"
integrity sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==
"@nodelib/fs.walk@^1.2.3":
version "1.2.4"
resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz#011b9202a70a6366e436ca5c065844528ab04976"
integrity sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==
dependencies:
"@nodelib/fs.scandir" "2.1.3"
fastq "^1.6.0"
"@octokit/rest@^15.10.0":
version "15.10.0"
resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-15.10.0.tgz#9baf7430e55edf1a1024c35ae72ed2f5fc6e90e9"
@ -1300,6 +1321,11 @@
retry "^0.12.0"
ws "^5.2.0"
"@testim/chrome-version@^1.0.7":
version "1.0.7"
resolved "https://registry.yarnpkg.com/@testim/chrome-version/-/chrome-version-1.0.7.tgz#0cd915785ec4190f08a3a6acc9b61fc38fb5f1a9"
integrity sha512-8UT/J+xqCYfn3fKtOznAibsHpiuDshCb0fwgWxRazTT19Igp9ovoXMPhXyLD6m3CKQGTMHgqoxaFfMWaL40Rnw==
"@turf/bbox@6.x":
version "6.0.1"
resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-6.0.1.tgz#b966075771475940ee1c16be2a12cf389e6e923a"
@ -2493,6 +2519,14 @@ aggregate-error@^1.0.0:
clean-stack "^1.0.0"
indent-string "^3.0.0"
aggregate-error@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0"
integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==
dependencies:
clean-stack "^2.0.0"
indent-string "^4.0.0"
ajv-errors@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.0.tgz#ecf021fa108fd17dfb5e6b383f2dd233e31ffc59"
@ -3102,6 +3136,11 @@ array-union@^1.0.1:
dependencies:
array-uniq "^1.0.1"
array-union@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
array-uniq@^1.0.0, array-uniq@^1.0.1, array-uniq@^1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
@ -3401,6 +3440,13 @@ axios@^0.18.0:
follow-redirects "^1.3.0"
is-buffer "^1.1.5"
axios@^0.19.2:
version "0.19.2"
resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.2.tgz#3ea36c5d8818d0d5f8a8a97a6d36b86cdc00cb27"
integrity sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==
dependencies:
follow-redirects "1.5.10"
axobject-query@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz#ea187abe5b9002b377f925d8bf7d1c561adf38f9"
@ -4654,6 +4700,13 @@ braces@^2.3.0, braces@^2.3.1, braces@^2.3.2:
split-string "^3.0.2"
to-regex "^3.0.1"
braces@^3.0.1:
version "3.0.2"
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
dependencies:
fill-range "^7.0.1"
brfs@^1.3.0, brfs@^1.4.0:
version "1.4.3"
resolved "https://registry.yarnpkg.com/brfs/-/brfs-1.4.3.tgz#db675d6f5e923e6df087fca5859c9090aaed3216"
@ -5442,15 +5495,16 @@ chrome-trace-event@^1.0.0:
dependencies:
tslib "^1.9.0"
chromedriver@79.0.0:
version "79.0.0"
resolved "https://registry.yarnpkg.com/chromedriver/-/chromedriver-79.0.0.tgz#1660ac29924dfcd847911025593d6b6746aeea35"
integrity sha512-DO29C7ntJfzu6q1vuoWwCON8E9x5xzopt7Q41A7Dr7hBKcdNpGw1l9DTt9b+l1qviOWiJLGsD+jHw21ptEHubA==
chromedriver@80.0.1:
version "80.0.1"
resolved "https://registry.yarnpkg.com/chromedriver/-/chromedriver-80.0.1.tgz#35c1642e2d864b9e8262f291003e455b0e422917"
integrity sha512-VfRtZUpBUIjeypS+xM40+VD9g4Drv7L2VibG/4+0zX3mMx4KayN6gfKETycPfO6JwQXTLSxEr58fRcrsa8r5xQ==
dependencies:
del "^4.1.1"
"@testim/chrome-version" "^1.0.7"
axios "^0.19.2"
del "^5.1.0"
extract-zip "^1.6.7"
mkdirp "^0.5.1"
request "^2.88.0"
mkdirp "^1.0.3"
tcp-port-used "^1.0.1"
ci-info@^1.0.0:
@ -5523,6 +5577,11 @@ clean-stack@^1.0.0:
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-1.3.0.tgz#9e821501ae979986c46b1d66d2d432db2fd4ae31"
integrity sha1-noIVAa6XmYbEax1m0tQy2y/UrjE=
clean-stack@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
cli-boxes@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143"
@ -6995,7 +7054,7 @@ debug@2.6.9, debug@^2.0.0, debug@^2.1.0, debug@^2.1.1, debug@^2.1.2, debug@^2.2.
dependencies:
ms "2.0.0"
debug@3.1.0, debug@~3.1.0:
debug@3.1.0, debug@=3.1.0, debug@~3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==
@ -7224,18 +7283,19 @@ del@^3.0.0:
pify "^3.0.0"
rimraf "^2.2.8"
del@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4"
integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==
del@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/del/-/del-5.1.0.tgz#d9487c94e367410e6eff2925ee58c0c84a75b3a7"
integrity sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==
dependencies:
"@types/glob" "^7.1.1"
globby "^6.1.0"
is-path-cwd "^2.0.0"
is-path-in-cwd "^2.0.0"
p-map "^2.0.0"
pify "^4.0.1"
rimraf "^2.6.3"
globby "^10.0.1"
graceful-fs "^4.2.2"
is-glob "^4.0.1"
is-path-cwd "^2.2.0"
is-path-inside "^3.0.1"
p-map "^3.0.0"
rimraf "^3.0.0"
slash "^3.0.0"
delayed-stream@~1.0.0:
version "1.0.0"
@ -7410,6 +7470,13 @@ dir-glob@^2.0.0:
arrify "^1.0.1"
path-type "^3.0.0"
dir-glob@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
dependencies:
path-type "^4.0.0"
discontinuous-range@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a"
@ -8993,6 +9060,17 @@ fast-glob@^2.0.2:
merge2 "1.2.1"
micromatch "3.1.5"
fast-glob@^3.0.3:
version "3.1.1"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.1.1.tgz#87ee30e9e9f3eb40d6f254a7997655da753d7c82"
integrity sha512-nTCREpBY8w8r+boyFYAx21iL6faSsQynliPHM4Uf56SbkyohCNxpVPEH9xrF5TXKy+IsjkPUHDKiUkzBVRXn9g==
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
glob-parent "^5.1.0"
merge2 "^1.3.0"
micromatch "^4.0.2"
fast-json-stable-stringify@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
@ -9013,6 +9091,13 @@ fastparse@^1.1.1:
resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8"
integrity sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg=
fastq@^1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.0.tgz#4ec8a38f4ac25f21492673adb7eae9cfef47d1c2"
integrity sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA==
dependencies:
reusify "^1.0.0"
faye-websocket@^0.10.0, faye-websocket@~0.10.0:
version "0.10.0"
resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
@ -9219,6 +9304,13 @@ fill-range@^4.0.0:
repeat-string "^1.6.1"
to-regex-range "^2.1.0"
fill-range@^7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
dependencies:
to-regex-range "^5.0.1"
filter-obj@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b"
@ -9403,6 +9495,13 @@ focus-trap@^2.0.1:
dependencies:
tabbable "^1.0.3"
follow-redirects@1.5.10:
version "1.5.10"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.5.10.tgz#7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a"
integrity sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==
dependencies:
debug "=3.1.0"
follow-redirects@^1.3.0:
version "1.4.1"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.4.1.tgz#d8120f4518190f55aac65bb6fc7b85fcd666d6aa"
@ -9934,6 +10033,13 @@ glob-parent@^2.0.0:
dependencies:
is-glob "^2.0.0"
glob-parent@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2"
integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==
dependencies:
is-glob "^4.0.1"
glob-stream@^3.1.5:
version "3.1.18"
resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b"
@ -10143,6 +10249,20 @@ globals@^9.18.0, globals@^9.2.0:
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==
globby@^10.0.1:
version "10.0.2"
resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543"
integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==
dependencies:
"@types/glob" "^7.1.1"
array-union "^2.1.0"
dir-glob "^3.0.1"
fast-glob "^3.0.3"
glob "^7.1.3"
ignore "^5.1.1"
merge2 "^1.2.3"
slash "^3.0.0"
globby@^4.0.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/globby/-/globby-4.1.0.tgz#080f54549ec1b82a6c60e631fc82e1211dbe95f8"
@ -10374,6 +10494,11 @@ graceful-fs@^4.1.0:
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==
graceful-fs@^4.2.2:
version "4.2.3"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423"
integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==
graceful-fs@~1.2.0:
version "1.2.3"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364"
@ -11450,6 +11575,11 @@ ignore@^4.0.6:
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
ignore@^5.1.1:
version "5.1.4"
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf"
integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==
image-diff@1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/image-diff/-/image-diff-1.6.0.tgz#d07d1311dd0468491245cff7824ba87fe4b19fdc"
@ -11547,6 +11677,11 @@ indent-string@^3.0.0, indent-string@^3.2.0:
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=
indent-string@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
indexof@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
@ -12124,6 +12259,13 @@ is-glob@^3.1.0:
dependencies:
is-extglob "^2.1.0"
is-glob@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
dependencies:
is-extglob "^2.1.1"
is-hexadecimal@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.1.tgz#6e084bbc92061fbb0971ec58b6ce6d404e24da69"
@ -12211,6 +12353,11 @@ is-number@^4.0.0:
resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==
is-number@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
is-obj@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
@ -12247,7 +12394,7 @@ is-path-cwd@^1.0.0:
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d"
integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=
is-path-cwd@^2.0.0:
is-path-cwd@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb"
integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
@ -12259,13 +12406,6 @@ is-path-in-cwd@^1.0.0:
dependencies:
is-path-inside "^1.0.0"
is-path-in-cwd@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb"
integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==
dependencies:
is-path-inside "^2.1.0"
is-path-inside@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
@ -12273,12 +12413,10 @@ is-path-inside@^1.0.0:
dependencies:
path-is-inside "^1.0.1"
is-path-inside@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2"
integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==
dependencies:
path-is-inside "^1.0.2"
is-path-inside@^3.0.1:
version "3.0.2"
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017"
integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==
is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
version "1.1.0"
@ -14858,6 +14996,11 @@ merge2@1.2.1:
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.1.tgz#271d2516ff52d4af7f7b710b8bf3e16e183fef66"
integrity sha512-wUqcG5pxrAcaFI1lkqkMnk3Q7nUxV/NWfpAFSeWUwG9TRODnBDCUHa75mi3o3vLWQ5N4CQERWCauSlP0I3ZqUg==
merge2@^1.2.3, merge2@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81"
integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==
merge@^1.1.3:
version "1.2.0"
resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da"
@ -14947,6 +15090,14 @@ micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8, mic
snapdragon "^0.8.1"
to-regex "^3.0.2"
micromatch@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
dependencies:
braces "^3.0.1"
picomatch "^2.0.5"
miller-rabin@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
@ -15208,6 +15359,11 @@ mkdirp@^0.3.5, mkdirp@~0.3.5:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.5.tgz#de3e5f8961c88c787ee1368df849ac4413eca8d7"
integrity sha1-3j5fiWHIjHh+4TaN+EmsRBPsqNc=
mkdirp@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.3.tgz#4cf2e30ad45959dddea53ad97d518b6c8205e1ea"
integrity sha512-6uCP4Qc0sWsgMLy1EOqqS/3rjDHOEnsStVr/4vtAIK2Y5i2kA7lFFejYrpIyiN9w0pYf4ckeCYT9f1r1P9KX5g==
mocha@3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/mocha/-/mocha-3.3.0.tgz#d29b7428d3f52c82e2e65df1ecb7064e1aabbfb5"
@ -16348,10 +16504,12 @@ p-map@^1.1.1:
resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b"
integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA==
p-map@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175"
integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==
p-map@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d"
integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==
dependencies:
aggregate-error "^3.0.0"
p-queue@^2.3.0:
version "2.4.2"
@ -16723,6 +16881,11 @@ path-type@^2.0.0:
dependencies:
pify "^2.0.0"
path-type@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
pbf@^3.0.5:
version "3.1.0"
resolved "https://registry.yarnpkg.com/pbf/-/pbf-3.1.0.tgz#f70004badcb281761eabb1e76c92f179f08189e9"
@ -16807,7 +16970,12 @@ pez@4.x.x:
hoek "5.x.x"
nigel "3.x.x"
pify@4.0.1, pify@^4.0.1:
picomatch@^2.0.5:
version "2.2.1"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.1.tgz#21bac888b6ed8601f831ce7816e335bc779f0a4a"
integrity sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==
pify@4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
@ -19048,6 +19216,11 @@ retry@^0.12.0:
resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=
reusify@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
rfdc@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.1.2.tgz#e6e72d74f5dc39de8f538f65e00c36c18018e349"
@ -19074,10 +19247,10 @@ rimraf@2.4.3:
dependencies:
glob "^5.0.14"
rimraf@^2.6.3:
version "2.6.3"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
rimraf@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
dependencies:
glob "^7.1.3"
@ -19172,6 +19345,11 @@ run-async@^2.0.0, run-async@^2.2.0:
dependencies:
is-promise "^2.1.0"
run-parallel@^1.1.9:
version "1.1.9"
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.9.tgz#c9dd3a7cf9f4b2c4b6244e173a6ed866e61dd679"
integrity sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==
run-queue@^1.0.0, run-queue@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
@ -19789,6 +19967,11 @@ slash@^2.0.0:
resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
slash@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
slice-ansi@0.0.4:
version "0.0.4"
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35"
@ -21255,6 +21438,13 @@ to-regex-range@^2.1.0:
is-number "^3.0.0"
repeat-string "^1.6.1"
to-regex-range@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
dependencies:
is-number "^7.0.0"
to-regex@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.1.tgz#15358bee4a2c83bd76377ba1dc049d0f18837aae"