diff --git a/package.json b/package.json index 6747770460bb..060c283cd54d 100644 --- a/package.json +++ b/package.json @@ -53,6 +53,7 @@ "@types/sinon": "^7.0.11", "chai": "^4.1.2", "codecov": "^3.6.5", + "eslint": "7.27.0", "jest": "^24.7.1", "karma-browserstack-launcher": "^1.5.1", "karma-firefox-launcher": "^1.1.0", diff --git a/packages/angular/package.json b/packages/angular/package.json index 1b33d38545b9..00fa119463e7 100644 --- a/packages/angular/package.json +++ b/packages/angular/package.json @@ -32,7 +32,6 @@ "@angular/core": "^10.0.3", "@angular/router": "^10.0.3", "@sentry-internal/eslint-config-sdk": "6.5.0", - "eslint": "7.6.0", "npm-run-all": "^4.1.2", "prettier": "1.19.0", "rimraf": "^2.6.3", diff --git a/packages/browser/package.json b/packages/browser/package.json index 361a6ba60f15..47528a6e0bbf 100644 --- a/packages/browser/package.json +++ b/packages/browser/package.json @@ -28,7 +28,6 @@ "btoa": "^1.2.1", "chai": "^4.1.2", "chokidar": "^3.0.2", - "eslint": "7.6.0", "jest": "^24.7.1", "jsdom": "^15.0.0", "karma": "^4.1.0", diff --git a/packages/core/package.json b/packages/core/package.json index 24ab814beb61..25f083dd3f89 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -24,7 +24,6 @@ }, "devDependencies": { "@sentry-internal/eslint-config-sdk": "6.5.0", - "eslint": "7.6.0", "jest": "^24.7.1", "npm-run-all": "^4.1.2", "prettier": "1.19.0", diff --git a/packages/core/src/basebackend.ts b/packages/core/src/basebackend.ts index f7d5966292e0..eb7e598a02ad 100644 --- a/packages/core/src/basebackend.ts +++ b/packages/core/src/basebackend.ts @@ -91,7 +91,7 @@ export abstract class BaseBackend implements Backend { * @inheritDoc */ public sendEvent(event: Event): void { - this._transport.sendEvent(event).then(null, reason => { + void this._transport.sendEvent(event).then(null, reason => { logger.error(`Error while sending event: ${reason}`); }); } @@ -105,7 +105,7 @@ export abstract class BaseBackend implements Backend { return; } - this._transport.sendSession(session).then(null, reason => { + void this._transport.sendSession(session).then(null, reason => { logger.error(`Error while sending session: ${reason}`); }); } diff --git a/packages/core/src/baseclient.ts b/packages/core/src/baseclient.ts index bf5795eacd3b..9418ec21a130 100644 --- a/packages/core/src/baseclient.ts +++ b/packages/core/src/baseclient.ts @@ -559,7 +559,7 @@ export abstract class BaseClient implement */ protected _process(promise: PromiseLike): void { this._processing += 1; - promise.then( + void promise.then( value => { this._processing -= 1; return value; diff --git a/packages/ember/package.json b/packages/ember/package.json index 52dd6497e5f6..e3a27faae70e 100644 --- a/packages/ember/package.json +++ b/packages/ember/package.json @@ -73,7 +73,6 @@ "ember-test-selectors": "^4.1.0", "ember-try": "^1.4.0", "ember-window-mock": "^0.7.1", - "eslint": "7.6.0", "eslint-plugin-ember": "^8.6.0", "eslint-plugin-node": "^11.1.0", "loader.js": "^4.7.0", diff --git a/packages/eslint-config-sdk/package.json b/packages/eslint-config-sdk/package.json index aaea7d3913e8..aaf201a25908 100644 --- a/packages/eslint-config-sdk/package.json +++ b/packages/eslint-config-sdk/package.json @@ -33,7 +33,7 @@ "eslint": ">=5" }, "devDependencies": { - "eslint": "7.6.0", + "eslint": "7.27.0", "typescript": "3.7.5" }, "scripts": { diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 4473d670dc85..18b50f015f1d 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -35,7 +35,6 @@ "devDependencies": { "@sentry-internal/eslint-config-sdk": "6.5.0", "@testing-library/react": "^10.4.9", - "eslint": "7.6.0", "jest": "^24.7.1", "npm-run-all": "^4.1.2", "prettier": "1.19.0", diff --git a/packages/hub/package.json b/packages/hub/package.json index a6cde83ec054..dba45c96251e 100644 --- a/packages/hub/package.json +++ b/packages/hub/package.json @@ -22,7 +22,6 @@ }, "devDependencies": { "@sentry-internal/eslint-config-sdk": "6.5.0", - "eslint": "7.6.0", "jest": "^24.7.1", "npm-run-all": "^4.1.2", "prettier": "1.19.0", diff --git a/packages/integrations/package.json b/packages/integrations/package.json index 87f1e5539f95..4db327bbb249 100644 --- a/packages/integrations/package.json +++ b/packages/integrations/package.json @@ -24,7 +24,6 @@ "devDependencies": { "@sentry-internal/eslint-config-sdk": "6.5.0", "chai": "^4.1.2", - "eslint": "7.6.0", "jest": "^24.7.1", "npm-run-all": "^4.1.2", "prettier": "1.19.0", diff --git a/packages/minimal/package.json b/packages/minimal/package.json index db204905156c..f9133a847616 100644 --- a/packages/minimal/package.json +++ b/packages/minimal/package.json @@ -22,7 +22,6 @@ }, "devDependencies": { "@sentry-internal/eslint-config-sdk": "6.5.0", - "eslint": "7.6.0", "jest": "^24.7.1", "npm-run-all": "^4.1.2", "prettier": "1.19.0", diff --git a/packages/node/package.json b/packages/node/package.json index a28b8c649979..edf1609f5d93 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -32,7 +32,6 @@ "@types/express": "^4.17.2", "@types/lru-cache": "^5.1.0", "@types/node": "~10.17.0", - "eslint": "7.6.0", "express": "^4.17.1", "jest": "^24.7.1", "nock": "^13.0.5", diff --git a/packages/react/package.json b/packages/react/package.json index 34f7dfcedc02..1fdcfeea2073 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -37,7 +37,6 @@ "@types/react-router-3": "npm:@types/react-router@3.0.24", "@types/react-router-4": "npm:@types/react-router@5.1.14", "@types/react-router-5": "npm:@types/react-router@5.1.14", - "eslint": "7.6.0", "eslint-plugin-react": "^7.20.5", "eslint-plugin-react-hooks": "^4.0.8", "history-4": "npm:history@4.6.0", diff --git a/packages/serverless/package.json b/packages/serverless/package.json index 889a4b12f7d1..263c280d3960 100644 --- a/packages/serverless/package.json +++ b/packages/serverless/package.json @@ -33,7 +33,6 @@ "@sentry-internal/eslint-config-sdk": "6.5.0", "@types/node": "^14.6.4", "aws-sdk": "^2.765.0", - "eslint": "7.6.0", "find-up": "^5.0.0", "google-gax": "^2.9.0", "jest": "^24.7.1", diff --git a/packages/serverless/src/awslambda.ts b/packages/serverless/src/awslambda.ts index c7e8ad450808..79c662d0505c 100644 --- a/packages/serverless/src/awslambda.ts +++ b/packages/serverless/src/awslambda.ts @@ -221,7 +221,7 @@ export function wrapHandler( // This should never happen, but still can if someone writes a handler as // `async (event, context, callback) => {}` if (isPromise(rv)) { - (rv as Promise>).then(resolve, reject); + void (rv as Promise>).then(resolve, reject); } }) : (handler as AsyncHandler); diff --git a/packages/serverless/src/gcpfunction/cloud_events.ts b/packages/serverless/src/gcpfunction/cloud_events.ts index 25056765f76c..a1cb4eee56d5 100644 --- a/packages/serverless/src/gcpfunction/cloud_events.ts +++ b/packages/serverless/src/gcpfunction/cloud_events.ts @@ -59,7 +59,7 @@ function _wrapCloudEventFunction( } transaction.finish(); - flush(options.flushTimeout) + void flush(options.flushTimeout) .then(() => { callback(...args); }) @@ -72,7 +72,7 @@ function _wrapCloudEventFunction( return (fn as CloudEventFunctionWithCallback)(context, newCallback); } - Promise.resolve() + void Promise.resolve() .then(() => (fn as CloudEventFunction)(context)) .then( result => { diff --git a/packages/serverless/src/gcpfunction/events.ts b/packages/serverless/src/gcpfunction/events.ts index 48299b9873f5..45ef6a1004a3 100644 --- a/packages/serverless/src/gcpfunction/events.ts +++ b/packages/serverless/src/gcpfunction/events.ts @@ -54,7 +54,7 @@ function _wrapEventFunction( } transaction.finish(); - flush(options.flushTimeout) + void flush(options.flushTimeout) .then(() => { callback(...args); }) @@ -67,7 +67,7 @@ function _wrapEventFunction( return (fn as EventFunctionWithCallback)(data, context, newCallback); } - Promise.resolve() + void Promise.resolve() .then(() => (fn as EventFunction)(data, context)) .then( result => { diff --git a/packages/tracing/package.json b/packages/tracing/package.json index fa823062c8a8..5510345686c7 100644 --- a/packages/tracing/package.json +++ b/packages/tracing/package.json @@ -27,7 +27,6 @@ "@sentry/browser": "6.5.0", "@types/express": "^4.17.1", "@types/jsdom": "^16.2.3", - "eslint": "7.6.0", "jest": "^24.7.1", "jsdom": "^16.2.2", "npm-run-all": "^4.1.2", diff --git a/packages/types/package.json b/packages/types/package.json index b79f4108368c..410fec004d46 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -17,7 +17,6 @@ }, "devDependencies": { "@sentry-internal/eslint-config-sdk": "6.5.0", - "eslint": "7.6.0", "npm-run-all": "^4.1.2", "prettier": "1.19.0", "typescript": "3.7.5" diff --git a/packages/utils/package.json b/packages/utils/package.json index 03c1051fa4a1..6933394a1e34 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -22,7 +22,6 @@ "devDependencies": { "@sentry-internal/eslint-config-sdk": "6.5.0", "chai": "^4.1.2", - "eslint": "7.6.0", "jest": "^24.7.1", "npm-run-all": "^4.1.2", "prettier": "1.19.0", diff --git a/packages/vue/package.json b/packages/vue/package.json index 753373e7b881..421f03351419 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -29,7 +29,6 @@ }, "devDependencies": { "@sentry-internal/eslint-config-sdk": "6.5.0", - "eslint": "7.6.0", "jest": "^24.7.1", "jsdom": "^16.2.2", "npm-run-all": "^4.1.2", diff --git a/packages/wasm/package.json b/packages/wasm/package.json index 61d8ba9cf4f8..e22528cd3622 100644 --- a/packages/wasm/package.json +++ b/packages/wasm/package.json @@ -24,7 +24,6 @@ "@sentry-internal/eslint-config-sdk": "6.5.0", "@types/jest-environment-puppeteer": "^4.4.0", "@types/puppeteer": "^5.4.0", - "eslint": "7.6.0", "express": "^4.17.1", "jest": "^24.7.1", "jest-puppeteer": "^4.4.0", diff --git a/yarn.lock b/yarn.lock index 98aca26eac47..659d2d2ab8ce 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1150,6 +1150,21 @@ minimatch "^3.0.4" strip-json-comments "^3.1.1" +"@eslint/eslintrc@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.1.tgz#442763b88cecbe3ee0ec7ca6d6dd6168550cbf14" + integrity sha512-5v7TDE9plVhvxQeWLXDTvFvJBdH6pEsdnl2g/dAptmuFEPedQ4Erq5rsDsX+mvAM610IhNaO2W5V1dOOnDKxkQ== + dependencies: + ajv "^6.12.4" + debug "^4.1.1" + espree "^7.3.0" + globals "^12.1.0" + ignore "^4.0.6" + import-fresh "^3.2.1" + js-yaml "^3.13.1" + minimatch "^3.0.4" + strip-json-comments "^3.1.1" + "@fimbul/bifrost@^0.21.0": version "0.21.0" resolved "https://registry.yarnpkg.com/@fimbul/bifrost/-/bifrost-0.21.0.tgz#d0fafa25938fda475657a6a1e407a21bbe02c74e" @@ -3894,6 +3909,16 @@ ajv@^7.0.2: require-from-string "^2.0.2" uri-js "^4.2.2" +ajv@^8.0.1: + version "8.5.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.5.0.tgz#695528274bcb5afc865446aa275484049a18ae4b" + integrity sha512-Y2l399Tt1AguU3BPRP9Fn4eN+Or+StUGWCUpbnFyXSo8NZ9S4uj+AG2pjs5apK+ZMOwYOz1+a+VKvKH7CudXgQ== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + alphanum-sort@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" @@ -9135,7 +9160,7 @@ eslint-scope@^4.0.3: esrecurse "^4.1.0" estraverse "^4.1.1" -eslint-scope@^5.0.0, eslint-scope@^5.1.0, eslint-scope@^5.1.1: +eslint-scope@^5.0.0, eslint-scope@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== @@ -9203,28 +9228,31 @@ eslint@7.20.0: text-table "^0.2.0" v8-compile-cache "^2.0.3" -eslint@7.6.0: - version "7.6.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.6.0.tgz#522d67cfaea09724d96949c70e7a0550614d64d6" - integrity sha512-QlAManNtqr7sozWm5TF4wIH9gmUm2hE3vNRUvyoYAa4y1l5/jxD/PQStEjBMQtCqZmSep8UxrcecI60hOpe61w== +eslint@7.27.0: + version "7.27.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.27.0.tgz#665a1506d8f95655c9274d84bd78f7166b07e9c7" + integrity sha512-JZuR6La2ZF0UD384lcbnd0Cgg6QJjiCwhMD6eU4h/VGPcVGwawNNzKU41tgokGXnfjOOyI6QIffthhJTPzzuRA== dependencies: - "@babel/code-frame" "^7.0.0" + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.1" ajv "^6.10.0" chalk "^4.0.0" cross-spawn "^7.0.2" debug "^4.0.1" doctrine "^3.0.0" enquirer "^2.3.5" - eslint-scope "^5.1.0" + escape-string-regexp "^4.0.0" + eslint-scope "^5.1.1" eslint-utils "^2.1.0" - eslint-visitor-keys "^1.3.0" - espree "^7.2.0" - esquery "^1.2.0" + eslint-visitor-keys "^2.0.0" + espree "^7.3.1" + esquery "^1.4.0" esutils "^2.0.2" - file-entry-cache "^5.0.1" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" functional-red-black-tree "^1.0.1" glob-parent "^5.0.0" - globals "^12.1.0" + globals "^13.6.0" ignore "^4.0.6" import-fresh "^3.0.0" imurmurhash "^0.1.4" @@ -9232,7 +9260,7 @@ eslint@7.6.0: js-yaml "^3.13.1" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.4.1" - lodash "^4.17.19" + lodash.merge "^4.6.2" minimatch "^3.0.4" natural-compare "^1.4.0" optionator "^0.9.1" @@ -9241,7 +9269,7 @@ eslint@7.6.0: semver "^7.2.1" strip-ansi "^6.0.0" strip-json-comments "^3.1.0" - table "^5.2.3" + table "^6.0.9" text-table "^0.2.0" v8-compile-cache "^2.0.3" @@ -9250,7 +9278,7 @@ esm@^3.2.4: resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10" integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA== -espree@^7.2.0, espree@^7.3.0, espree@^7.3.1: +espree@^7.3.0, espree@^7.3.1: version "7.3.1" resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== @@ -9274,7 +9302,7 @@ esprima@~3.0.0: resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" integrity sha1-U88kes2ncxPlUcOqLnM0LT+099k= -esquery@^1.2.0, esquery@^1.4.0: +esquery@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== @@ -9592,7 +9620,7 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= -fast-deep-equal@^3.1.1: +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== @@ -9731,14 +9759,7 @@ figures@^3.0.0: dependencies: escape-string-regexp "^1.0.5" -file-entry-cache@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" - integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== - dependencies: - flat-cache "^2.0.1" - -file-entry-cache@^6.0.0: +file-entry-cache@^6.0.0, file-entry-cache@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== @@ -9977,15 +9998,6 @@ fixturify@^2.1.0: matcher-collection "^2.0.1" walk-sync "^2.0.2" -flat-cache@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" - integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== - dependencies: - flatted "^2.0.0" - rimraf "2.6.3" - write "1.0.3" - flat-cache@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" @@ -10641,6 +10653,13 @@ globals@^12.1.0: dependencies: type-fest "^0.8.1" +globals@^13.6.0: + version "13.9.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.9.0.tgz#4bf2bf635b334a173fb1daf7c5e6b218ecdc06cb" + integrity sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA== + dependencies: + type-fest "^0.20.2" + globals@^9.18.0: version "9.18.0" resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" @@ -13588,6 +13607,11 @@ lodash.templatesettings@^4.0.0: dependencies: lodash._reinterpolate "^3.0.0" +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= + lodash.uniq@^4.2.0, lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" @@ -17357,13 +17381,6 @@ rimraf@2, rimraf@^2.2.8, rimraf@^2.3.4, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2. dependencies: glob "^7.1.3" -rimraf@2.6.3, rimraf@~2.6.2: - version "2.6.3" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== - dependencies: - glob "^7.1.3" - rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.1, rimraf@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" @@ -17378,6 +17395,13 @@ rimraf@~2.5.2: dependencies: glob "^7.0.5" +rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + ripemd160@^2.0.0, ripemd160@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" @@ -17890,15 +17914,6 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slice-ansi@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" - integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== - dependencies: - ansi-styles "^3.2.0" - astral-regex "^1.0.0" - is-fullwidth-code-point "^2.0.0" - slice-ansi@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" @@ -18811,16 +18826,6 @@ sync-disk-cache@^2.0.0: rimraf "^3.0.0" username-sync "^1.0.2" -table@^5.2.3: - version "5.4.6" - resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" - integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== - dependencies: - ajv "^6.10.2" - lodash "^4.17.14" - slice-ansi "^2.1.0" - string-width "^3.0.0" - table@^6.0.4: version "6.0.7" resolved "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz#e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34" @@ -18831,6 +18836,18 @@ table@^6.0.4: slice-ansi "^4.0.0" string-width "^4.2.0" +table@^6.0.9: + version "6.7.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" + integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== + dependencies: + ajv "^8.0.1" + lodash.clonedeep "^4.5.0" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.0" + strip-ansi "^6.0.0" + tap-parser@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/tap-parser/-/tap-parser-7.0.0.tgz#54db35302fda2c2ccc21954ad3be22b2cba42721" @@ -19462,6 +19479,11 @@ type-fest@^0.18.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + type-fest@^0.21.3: version "0.21.3" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" @@ -20452,13 +20474,6 @@ write-pkg@^3.1.0: sort-keys "^2.0.0" write-json-file "^2.2.0" -write@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" - integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== - dependencies: - mkdirp "^0.5.1" - ws@^5.2.0: version "5.2.2" resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f"