From 6c414e77366e3835f3a85e4cd7193d6f47190a14 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 11 Dec 2020 09:35:56 +0100 Subject: [PATCH] chore(deps): update dependency eslint-config-prettier to v7 (#7940) Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Rhys Arkins <rhys@arkins.net> --- lib/datasource/jenkins-plugins/get.ts | 16 +++---- lib/datasource/rubygems/get.ts | 4 +- lib/datasource/terraform-module/index.ts | 6 +-- lib/datasource/terraform-provider/index.ts | 6 +-- lib/logger/index.ts | 27 ++++++----- lib/manager/bundler/artifacts.ts | 10 ++-- lib/manager/bundler/extract.spec.ts | 47 +++++++++---------- .../gradle-wrapper/artifacts-real.spec.ts | 14 +++--- lib/manager/gradle-wrapper/artifacts.spec.ts | 14 +++--- lib/manager/helmfile/extract.ts | 5 +- lib/manager/homebrew/extract.ts | 36 ++++---------- lib/manager/terraform/util.ts | 4 +- lib/manager/terragrunt/util.ts | 4 +- lib/platform/gitea/index.ts | 6 +-- lib/platform/github/index.ts | 7 ++- lib/util/exec/docker/index.ts | 8 +--- lib/util/template/index.ts | 6 +-- lib/versioning/gradle/index.ts | 10 ++-- lib/versioning/maven/index.ts | 7 ++- lib/versioning/pep440/index.ts | 5 +- lib/versioning/ruby/version.ts | 5 +- lib/workers/repository/util/commit-message.ts | 5 +- package.json | 2 +- tools/generate-imports.ts | 6 +-- yarn.lock | 15 ++---- 25 files changed, 113 insertions(+), 162 deletions(-) diff --git a/lib/datasource/jenkins-plugins/get.ts b/lib/datasource/jenkins-plugins/get.ts index a8ffb8534d..f1feb32445 100644 --- a/lib/datasource/jenkins-plugins/get.ts +++ b/lib/datasource/jenkins-plugins/get.ts @@ -85,15 +85,13 @@ function updateJenkinsPluginVersionsCacheCallback( const plugins = response.plugins; for (const name of Object.keys(plugins || [])) { // eslint-disable-next-line no-param-reassign - cache.cache[name] = Object.keys(plugins[name]).map((version) => { - return { - version, - downloadUrl: plugins[name][version]?.url, - releaseTimestamp: plugins[name][version]?.buildDate - ? new Date(plugins[name][version].buildDate + ' UTC') - : null, - }; - }); + cache.cache[name] = Object.keys(plugins[name]).map((version) => ({ + version, + downloadUrl: plugins[name][version]?.url, + releaseTimestamp: plugins[name][version]?.buildDate + ? new Date(plugins[name][version].buildDate + ' UTC') + : null, + })); } } diff --git a/lib/datasource/rubygems/get.ts b/lib/datasource/rubygems/get.ts index ee913a0205..978df8652a 100644 --- a/lib/datasource/rubygems/get.ts +++ b/lib/datasource/rubygems/get.ts @@ -10,9 +10,7 @@ const http = new Http(id); const INFO_PATH = '/api/v1/gems'; const VERSIONS_PATH = '/api/v1/versions'; -const getHeaders = (): OutgoingHttpHeaders => { - return { hostType: id }; -}; +const getHeaders = (): OutgoingHttpHeaders => ({ hostType: id }); export async function fetch( dependency: string, diff --git a/lib/datasource/terraform-module/index.ts b/lib/datasource/terraform-module/index.ts index 2ea7e3d3c0..c4a866a686 100644 --- a/lib/datasource/terraform-module/index.ts +++ b/lib/datasource/terraform-module/index.ts @@ -135,9 +135,9 @@ export async function getReleases({ dep.homepage = `https://registry.terraform.io/modules/${repository}`; } // set published date for latest release - const currentVersion = dep.releases.find((release) => { - return res.version === release.version; - }); + const currentVersion = dep.releases.find( + (release) => res.version === release.version + ); if (currentVersion) { currentVersion.releaseTimestamp = res.published_at; } diff --git a/lib/datasource/terraform-provider/index.ts b/lib/datasource/terraform-provider/index.ts index 2dcbd4f62c..5a9b7fe1b2 100644 --- a/lib/datasource/terraform-provider/index.ts +++ b/lib/datasource/terraform-provider/index.ts @@ -57,9 +57,9 @@ async function queryRegistry( version, })); // set published date for latest release - const currentVersion = dep.releases.find((release) => { - return res.version === release.version; - }); + const currentVersion = dep.releases.find( + (release) => res.version === release.version + ); // istanbul ignore else if (currentVersion) { currentVersion.releaseTimestamp = res.published_at; diff --git a/lib/logger/index.ts b/lib/logger/index.ts index 2d8e3ed775..4ec3342024 100644 --- a/lib/logger/index.ts +++ b/lib/logger/index.ts @@ -60,19 +60,20 @@ const bunyanLogger = bunyan.createLogger({ ].map(withSanitizer), }); -const logFactory = (level: bunyan.LogLevelString): any => { - return (p1: any, p2: any): void => { - if (p2) { - // meta and msg provided - bunyanLogger[level]({ logContext, ...curMeta, ...p1 }, p2); - } else if (is.string(p1)) { - // only message provided - bunyanLogger[level]({ logContext, ...curMeta }, p1); - } else { - // only meta provided - bunyanLogger[level]({ logContext, ...curMeta, ...p1 }); - } - }; +const logFactory = (level: bunyan.LogLevelString): any => ( + p1: any, + p2: any +): void => { + if (p2) { + // meta and msg provided + bunyanLogger[level]({ logContext, ...curMeta, ...p1 }, p2); + } else if (is.string(p1)) { + // only message provided + bunyanLogger[level]({ logContext, ...curMeta }, p1); + } else { + // only meta provided + bunyanLogger[level]({ logContext, ...curMeta, ...p1 }); + } }; const loggerLevels: bunyan.LogLevelString[] = [ diff --git a/lib/manager/bundler/artifacts.ts b/lib/manager/bundler/artifacts.ts index 93d5443b4c..1e7e915455 100644 --- a/lib/manager/bundler/artifacts.ts +++ b/lib/manager/bundler/artifacts.ts @@ -121,9 +121,13 @@ export async function updateArtifacts( const bundlerHostRulesVariables = findAllAuthenticatable({ hostType: 'bundler', - }).reduce((variables, hostRule) => { - return { ...variables, ...buildBundleHostVariable(hostRule) }; - }, {} as Record<string, string>); + }).reduce( + (variables, hostRule) => ({ + ...variables, + ...buildBundleHostVariable(hostRule), + }), + {} as Record<string, string> + ); const execOptions: ExecOptions = { cwdFile: packageFileName, diff --git a/lib/manager/bundler/extract.spec.ts b/lib/manager/bundler/extract.spec.ts index 132f03dabb..4803b3341a 100644 --- a/lib/manager/bundler/extract.spec.ts +++ b/lib/manager/bundler/extract.spec.ts @@ -82,15 +82,14 @@ describe('lib/manager/bundler/extract', () => { // couple of dependency of ruby rails are not present in the lock file. Filter out those before processing expect( res.deps - .filter((dep) => { - return Object.prototype.hasOwnProperty.call(dep, 'lockedVersion'); - }) - .every((dep) => { - return ( + .filter((dep) => + Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') + ) + .every( + (dep) => Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') && isValid(dep.lockedVersion) - ); - }) + ) ).toBe(true); validateGems(railsGemfile, res); }); @@ -104,12 +103,11 @@ describe('lib/manager/bundler/extract', () => { const res = await extractPackageFile(webPackerGemfile, 'Gemfile'); expect(res).toMatchSnapshot(); expect( - res.deps.every((dep) => { - return ( + res.deps.every( + (dep) => Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') && isValid(dep.lockedVersion) - ); - }) + ) ).toBe(true); validateGems(webPackerGemfile, res); }); @@ -119,15 +117,14 @@ describe('lib/manager/bundler/extract', () => { expect(res).toMatchSnapshot(); expect( res.deps - .filter((dep) => { - return Object.prototype.hasOwnProperty.call(dep, 'lockedVersion'); - }) - .every((dep) => { - return ( + .filter((dep) => + Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') + ) + .every( + (dep) => Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') && isValid(dep.lockedVersion) - ); - }) + ) ).toBe(true); validateGems(mastodonGemfile, res); }); @@ -136,12 +133,11 @@ describe('lib/manager/bundler/extract', () => { const res = await extractPackageFile(rubyCIGemfile, 'Gemfile'); expect(res).toMatchSnapshot(); expect( - res.deps.every((dep) => { - return ( + res.deps.every( + (dep) => Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') && isValid(dep.lockedVersion) - ); - }) + ) ).toBe(true); validateGems(rubyCIGemfile, res); }); @@ -151,12 +147,11 @@ describe('lib/manager/bundler/extract', () => { const res = await extractPackageFile(gitlabFossGemfile, 'Gemfile'); expect(res).toMatchSnapshot(); expect( - res.deps.every((dep) => { - return ( + res.deps.every( + (dep) => Object.prototype.hasOwnProperty.call(dep, 'lockedVersion') && isValid(dep.lockedVersion) - ); - }) + ) ).toBe(true); validateGems(gitlabFossGemfile, res); }); diff --git a/lib/manager/gradle-wrapper/artifacts-real.spec.ts b/lib/manager/gradle-wrapper/artifacts-real.spec.ts index ecbfd81d0d..41b0371582 100644 --- a/lib/manager/gradle-wrapper/artifacts-real.spec.ts +++ b/lib/manager/gradle-wrapper/artifacts-real.spec.ts @@ -70,14 +70,12 @@ describe(getName(__filename), () => { 'gradle/wrapper/gradle-wrapper.jar', 'gradlew', 'gradlew.bat', - ].map((fileProjectPath) => { - return { - file: { - name: fileProjectPath, - contents: readBinSync(`./testFiles/${fileProjectPath}`), - }, - }; - }) + ].map((fileProjectPath) => ({ + file: { + name: fileProjectPath, + contents: readBinSync(`./testFiles/${fileProjectPath}`), + }, + })) ); [ diff --git a/lib/manager/gradle-wrapper/artifacts.spec.ts b/lib/manager/gradle-wrapper/artifacts.spec.ts index 26de545992..428023b15d 100644 --- a/lib/manager/gradle-wrapper/artifacts.spec.ts +++ b/lib/manager/gradle-wrapper/artifacts.spec.ts @@ -84,14 +84,12 @@ describe(getName(__filename), () => { 'gradle/wrapper/gradle-wrapper.properties', 'gradlew', 'gradlew.bat', - ].map((fileProjectPath) => { - return { - file: { - name: fileProjectPath, - contents: 'test', - }, - }; - }) + ].map((fileProjectPath) => ({ + file: { + name: fileProjectPath, + contents: 'test', + }, + })) ); expect(execSnapshots).toMatchSnapshot(); }); diff --git a/lib/manager/helmfile/extract.ts b/lib/manager/helmfile/extract.ts index 8a253b0183..bd577b4470 100644 --- a/lib/manager/helmfile/extract.ts +++ b/lib/manager/helmfile/extract.ts @@ -5,9 +5,8 @@ import { logger } from '../../logger'; import { SkipReason } from '../../types'; import { ExtractConfig, PackageDependency, PackageFile } from '../common'; -const isValidChartName = (name: string): boolean => { - return !/[!@#$%^&*(),.?":{}/|<>A-Z]/.test(name); -}; +const isValidChartName = (name: string): boolean => + !/[!@#$%^&*(),.?":{}/|<>A-Z]/.test(name); export function extractPackageFile( content: string, diff --git a/lib/manager/homebrew/extract.ts b/lib/manager/homebrew/extract.ts index 412ed25455..a5a43a0e56 100644 --- a/lib/manager/homebrew/extract.ts +++ b/lib/manager/homebrew/extract.ts @@ -7,16 +7,12 @@ import { isSpace, removeComments, skip } from './util'; function parseSha256(idx: number, content: string): string | null { let i = idx; i += 'sha256'.length; - i = skip(i, content, (c) => { - return isSpace(c); - }); + i = skip(i, content, (c) => isSpace(c)); if (content[i] !== '"' && content[i] !== "'") { return null; } i += 1; - const j = skip(i, content, (c) => { - return c !== '"' && c !== "'"; - }); + const j = skip(i, content, (c) => c !== '"' && c !== "'"); const sha256 = content.slice(i, j); return sha256; } @@ -33,17 +29,13 @@ function extractSha256(content: string): string | null { function parseUrl(idx: number, content: string): string | null { let i = idx; i += 'url'.length; - i = skip(i, content, (c) => { - return isSpace(c); - }); + i = skip(i, content, (c) => isSpace(c)); const chr = content[i]; if (chr !== '"' && chr !== "'") { return null; } i += 1; - const j = skip(i, content, (c) => { - return c !== '"' && c !== "'" && !isSpace(c); - }); + const j = skip(i, content, (c) => c !== '"' && c !== "'" && !isSpace(c)); const url = content.slice(i, j); return url; } @@ -108,31 +100,21 @@ export function parseUrlPath(urlStr: string): UrlPathParsedResult | null { function parseClassHeader(idx: number, content: string): string | null { let i = idx; i += 'class'.length; - i = skip(i, content, (c) => { - return isSpace(c); - }); + i = skip(i, content, (c) => isSpace(c)); // Skip all non space and non '<' characters - let j = skip(i, content, (c) => { - return !isSpace(c) && c !== '<'; - }); + let j = skip(i, content, (c) => !isSpace(c) && c !== '<'); const className = content.slice(i, j); i = j; // Skip spaces - i = skip(i, content, (c) => { - return isSpace(c); - }); + i = skip(i, content, (c) => isSpace(c)); if (content[i] === '<') { i += 1; } else { return null; } // Skip spaces - i = skip(i, content, (c) => { - return isSpace(c); - }); + i = skip(i, content, (c) => isSpace(c)); // Skip non-spaces - j = skip(i, content, (c) => { - return !isSpace(c); - }); + j = skip(i, content, (c) => !isSpace(c)); if (content.slice(i, j) !== 'Formula') { return null; } diff --git a/lib/manager/terraform/util.ts b/lib/manager/terraform/util.ts index 80dfada2cf..0744a8a922 100644 --- a/lib/manager/terraform/util.ts +++ b/lib/manager/terraform/util.ts @@ -74,9 +74,7 @@ export function checkFileContainsDependency( content: string, checkList: string[] ): boolean { - return checkList.some((check) => { - return content.includes(check); - }); + return checkList.some((check) => content.includes(check)); } const pathStringRegex = /(.|..)?(\/[^/])+/; diff --git a/lib/manager/terragrunt/util.ts b/lib/manager/terragrunt/util.ts index 97e3cd96b0..36ee3a512b 100644 --- a/lib/manager/terragrunt/util.ts +++ b/lib/manager/terragrunt/util.ts @@ -48,7 +48,5 @@ export function checkFileContainsDependency( content: string, checkList: string[] ): boolean { - return checkList.some((check) => { - return content.includes(check); - }); + return checkList.some((check) => content.includes(check)); } diff --git a/lib/platform/gitea/index.ts b/lib/platform/gitea/index.ts index 9205e65217..f5b8ad9dd1 100644 --- a/lib/platform/gitea/index.ts +++ b/lib/platform/gitea/index.ts @@ -155,9 +155,9 @@ function getLabelList(): Promise<helper.Label[]> { return []; }); - config.labelList = Promise.all([repoLabels, orgLabels]).then((labels) => { - return [].concat(...labels); - }); + config.labelList = Promise.all([repoLabels, orgLabels]).then((labels) => + [].concat(...labels) + ); } return config.labelList; diff --git a/lib/platform/github/index.ts b/lib/platform/github/index.ts index caef151f68..ea9ef1d76c 100644 --- a/lib/platform/github/index.ts +++ b/lib/platform/github/index.ts @@ -685,15 +685,14 @@ export async function getPrList(): Promise<Pr[]> { throw new ExternalHostError(err, PLATFORM_TYPE_GITHUB); } config.prList = prList - .filter((pr) => { - return ( + .filter( + (pr) => config.forkMode || config.ignorePrAuthor || (pr?.user?.login && config?.renovateUsername ? pr.user.login === config.renovateUsername : true) - ); - }) + ) .map( (pr) => ({ diff --git a/lib/util/exec/docker/index.ts b/lib/util/exec/docker/index.ts index 228277afce..ebce1214a4 100644 --- a/lib/util/exec/docker/index.ts +++ b/lib/util/exec/docker/index.ts @@ -52,18 +52,14 @@ function uniq<T = unknown>( array: T[], eql = (x: T, y: T): boolean => x === y ): T[] { - return array.filter((x, idx, arr) => { - return arr.findIndex((y) => eql(x, y)) === idx; - }); + return array.filter((x, idx, arr) => arr.findIndex((y) => eql(x, y)) === idx); } function prepareVolumes(volumes: VolumeOption[] = []): string[] { const expanded: (VolumesPair | null)[] = volumes.map(expandVolumeOption); const filtered: VolumesPair[] = expanded.filter((vol) => vol !== null); const unique: VolumesPair[] = uniq<VolumesPair>(filtered, volumesEql); - return unique.map(([from, to]) => { - return `-v "${from}":"${to}"`; - }); + return unique.map(([from, to]) => `-v "${from}":"${to}"`); } function prepareCommands(commands: Opt<string>[]): string[] { diff --git a/lib/util/template/index.ts b/lib/util/template/index.ts index 2160a8f2ca..d604871b6e 100644 --- a/lib/util/template/index.ts +++ b/lib/util/template/index.ts @@ -6,9 +6,9 @@ import { clone } from '../clone'; handlebars.registerHelper('encodeURIComponent', encodeURIComponent); // istanbul ignore next -handlebars.registerHelper('replace', (find, replace, context) => { - return context.replace(new RegExp(find, 'g'), replace); -}); +handlebars.registerHelper('replace', (find, replace, context) => + context.replace(new RegExp(find, 'g'), replace) +); export const exposedConfigOptions = [ 'branchName', diff --git a/lib/versioning/gradle/index.ts b/lib/versioning/gradle/index.ts index 1fbf92624d..30a5cca166 100644 --- a/lib/versioning/gradle/index.ts +++ b/lib/versioning/gradle/index.ts @@ -150,8 +150,8 @@ const matches = (a: string, b: string): boolean => { return leftResult && rightResult; }; -const getSatisfyingVersion = (versions: string[], range: string): string => { - return versions.reduce((result, version) => { +const getSatisfyingVersion = (versions: string[], range: string): string => + versions.reduce((result, version) => { if (matches(version, range)) { if (!result) { return version; @@ -162,10 +162,9 @@ const getSatisfyingVersion = (versions: string[], range: string): string => { } return result; }, null); -}; -const minSatisfyingVersion = (versions: string[], range: string): string => { - return versions.reduce((result, version) => { +const minSatisfyingVersion = (versions: string[], range: string): string => + versions.reduce((result, version) => { if (matches(version, range)) { if (!result) { return version; @@ -176,7 +175,6 @@ const minSatisfyingVersion = (versions: string[], range: string): string => { } return result; }, null); -}; function getNewValue({ currentValue, diff --git a/lib/versioning/maven/index.ts b/lib/versioning/maven/index.ts index 19949b3ae1..0c13f824c6 100644 --- a/lib/versioning/maven/index.ts +++ b/lib/versioning/maven/index.ts @@ -121,9 +121,9 @@ const isStable = (version: string): boolean | null => { return null; }; -const getSatisfyingVersion = (versions: string[], range: string): string => { - // istanbul ignore next - return versions.reduce((result, version) => { +// istanbul ignore next +const getSatisfyingVersion = (versions: string[], range: string): string => + versions.reduce((result, version) => { if (matches(version, range)) { if (!result) { return version; @@ -134,7 +134,6 @@ const getSatisfyingVersion = (versions: string[], range: string): string => { } return result; }, null); -}; function getNewValue({ currentValue, diff --git a/lib/versioning/pep440/index.ts b/lib/versioning/pep440/index.ts index 046a0cadc1..050ce7bf09 100644 --- a/lib/versioning/pep440/index.ts +++ b/lib/versioning/pep440/index.ts @@ -50,9 +50,8 @@ export const isSingleVersion = (constraint: string): string => export { isVersion, matches }; -const equals = (version1: string, version2: string): boolean => { - return isVersion(version1) && isVersion(version2) && eq(version1, version2); -}; +const equals = (version1: string, version2: string): boolean => + isVersion(version1) && isVersion(version2) && eq(version1, version2); export const api: VersioningApi = { equals, diff --git a/lib/versioning/ruby/version.ts b/lib/versioning/ruby/version.ts index 5a082a672f..f6f7b44a93 100644 --- a/lib/versioning/ruby/version.ts +++ b/lib/versioning/ruby/version.ts @@ -30,9 +30,8 @@ const parse = (version: string): RubyVersion => ({ const adapt = (left: string, right: string): string => left.split('.').slice(0, right.split('.').length).join('.'); -const floor = (version: string): string => { - return [...releaseSegments(version).slice(0, -1), 0].join('.'); -}; +const floor = (version: string): string => + [...releaseSegments(version).slice(0, -1), 0].join('.'); // istanbul ignore next const incrementLastSegment = (version: string): string => { diff --git a/lib/workers/repository/util/commit-message.ts b/lib/workers/repository/util/commit-message.ts index 014eadda43..d84752f81a 100644 --- a/lib/workers/repository/util/commit-message.ts +++ b/lib/workers/repository/util/commit-message.ts @@ -2,10 +2,9 @@ export const COMMIT_MESSAGE_PREFIX_SEPARATOR = ':'; export const formatCommitMessagePrefix = ( commitMessagePrefix: string -): string => { - return `${commitMessagePrefix}${ +): string => + `${commitMessagePrefix}${ commitMessagePrefix.endsWith(COMMIT_MESSAGE_PREFIX_SEPARATOR) ? '' : COMMIT_MESSAGE_PREFIX_SEPARATOR }`; -}; diff --git a/package.json b/package.json index 8e271753c3..fbd4299feb 100644 --- a/package.json +++ b/package.json @@ -233,7 +233,7 @@ "cross-env": "7.0.3", "eslint": "7.12.1", "eslint-config-airbnb-typescript": "12.0.0", - "eslint-config-prettier": "6.15.0", + "eslint-config-prettier": "7.0.0", "eslint-plugin-import": "2.22.1", "eslint-plugin-jest": "24.1.0", "eslint-plugin-promise": "4.2.1", diff --git a/tools/generate-imports.ts b/tools/generate-imports.ts index f1cbb8590f..898da74cda 100644 --- a/tools/generate-imports.ts +++ b/tools/generate-imports.ts @@ -33,9 +33,9 @@ async function updateFile(file: string, code: string): Promise<void> { function camelCase(input: string): string { return input - .replace(/(?:^\w|[A-Z]|\b\w)/g, (char, index) => { - return index === 0 ? char.toLowerCase() : char.toUpperCase(); - }) + .replace(/(?:^\w|[A-Z]|\b\w)/g, (char, index) => + index === 0 ? char.toLowerCase() : char.toUpperCase() + ) .replace(/-/g, ''); } diff --git a/yarn.lock b/yarn.lock index a44c808ec6..ef843bd318 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4086,12 +4086,10 @@ eslint-config-airbnb@18.2.0: object.assign "^4.1.0" object.entries "^1.1.2" -eslint-config-prettier@6.15.0: - version "6.15.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz#7f93f6cb7d45a92f1537a70ecc06366e1ac6fed9" - integrity sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw== - dependencies: - get-stdin "^6.0.0" +eslint-config-prettier@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-7.0.0.tgz#c1ae4106f74e6c0357f44adb076771d032ac0e97" + integrity sha512-8Y8lGLVPPZdaNA7JXqnvETVC7IiVRgAP6afQu9gOQRn90YY3otMNh+x7Vr2vMePQntF+5erdSUBqSzCmU/AxaQ== eslint-import-resolver-node@^0.3.4: version "0.3.4" @@ -4750,11 +4748,6 @@ get-package-type@^0.1.0: resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== -get-stdin@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" - integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== - get-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" -- GitLab