Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

♻️ update typescript to v4 #145

Merged
merged 6 commits into from
Sep 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"react-native": "0.63.2",
"react-native-svg": "^12.1.0",
"tsfn": "*",
"typescript": "^3.8.0",
"typescript": "^4.0.0",
"ws": "^7.3.1"
},
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion packages/autoprops/src/apply-prop-value.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable max-params, no-use-before-define */
/* eslint-disable max-params */
/* eslint-disable @typescript-eslint/no-use-before-define */
import BigInt from 'big-integer'
import type { BigInteger } from 'big-integer'
import { isUndefined } from 'tsfn'
Expand Down
2 changes: 1 addition & 1 deletion packages/autoprops/src/apply-valid-perm.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable no-use-before-define */
/* eslint-disable @typescript-eslint/no-use-before-define */
import BigInt from 'big-integer'
import type { BigInteger } from 'big-integer'
import { applyDisableDeps } from './apply-disable-deps'
Expand Down
2 changes: 1 addition & 1 deletion packages/autoprops/src/get-props.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable no-use-before-define */
/* eslint-disable @typescript-eslint/no-use-before-define */
import BigInt from 'big-integer'
import type { BigInteger } from 'big-integer'
import { isDefined } from 'tsfn'
Expand Down
2 changes: 1 addition & 1 deletion packages/autoprops/src/serialize-props.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable no-use-before-define */
/* eslint-disable @typescript-eslint/no-use-before-define */
import BigInt from 'big-integer'
import type { BigInteger } from 'big-integer'
import { isValidElement } from 'react'
Expand Down
2 changes: 1 addition & 1 deletion packages/dleet/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable no-use-before-define */
/* eslint-disable @typescript-eslint/no-use-before-define */
import { join } from 'path'
import { chmod, lstat, readdir, rmdir, unlink } from 'pifs'
import { delay } from './delay'
Expand Down
3 changes: 2 additions & 1 deletion packages/mock/request/test/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import http, { IncomingMessage, ServerResponse } from 'http'
import type { IncomingMessage, ServerResponse } from 'http'
import http from 'http'
import https from 'https'
import test from 'tape'
import { unchunkString } from 'unchunk'
Expand Down
5 changes: 2 additions & 3 deletions packages/nextools/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"node": ">=12.13.0"
},
"dependencies": {
"@nextools/eslint-plugin": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.20.3"
Expand Down
1 change: 1 addition & 0 deletions packages/nextools/eslint-config/src/config/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ module.exports = {
'no-self-compare': 2,
'no-sequences': 2,
'no-unmodified-loop-condition': 2,
'no-unused-vars': 0,
'no-useless-call': 2,
'no-useless-catch': 2,
'no-useless-concat': 2,
Expand Down
11 changes: 9 additions & 2 deletions packages/nextools/eslint-config/src/config/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ module.exports = {
default: 'array',
readonly: 'array',
}],
'@typescript-eslint/no-unused-vars': 2,
'@typescript-eslint/indent': [2, 2, {
ignoredNodes: ['JSXElement', 'JSXElement > *', 'JSXAttribute', 'JSXIdentifier', 'JSXNamespacedName', 'JSXMemberExpression', 'JSXSpreadAttribute', 'JSXExpressionContainer', 'JSXOpeningElement', 'JSXClosingElement', 'JSXText', 'JSXEmptyExpression', 'JSXSpreadChild', 'TSIntersectionType'],
SwitchCase: 1,
Expand Down Expand Up @@ -37,6 +36,14 @@ module.exports = {
'@typescript-eslint/consistent-type-definitions': [2, 'type'],
'@typescript-eslint/await-thenable': 2,
'@typescript-eslint/no-floating-promises': 2,
'@nextools/type-only-import-export': 2,
'@typescript-eslint/consistent-type-imports': [2, { prefer: 'type-imports' }],
'no-redeclare': 0,
'@typescript-eslint/no-redeclare': 2,
'no-unused-vars': 0,
'@typescript-eslint/no-unused-vars': 2,
'no-use-before-define': 0,
'@typescript-eslint/no-use-before-define': 2,
semi: 'off',
'@typescript-eslint/semi': [2, 'never'],
},
}
1 change: 0 additions & 1 deletion packages/nextools/eslint-config/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ module.exports = {
'node',
'react',
'@typescript-eslint',
'@nextools',
],
extends: [
require.resolve('./config/core'),
Expand Down
2 changes: 1 addition & 1 deletion packages/nextools/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"access": "public"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^3.7.1"
"@typescript-eslint/experimental-utils": "^4.0.1"
}
}
4 changes: 2 additions & 2 deletions packages/nextools/start-preset/src/pkg.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ReadStream, Dirent, Stats } from 'fs'
import { Transform } from 'stream'
import type { ReadStream, Dirent, Stats } from 'fs'
import type { Transform } from 'stream'
import plugin from '@start/plugin'

const TEMPLATES_PATH = './tasks/pkg/'
Expand Down
4 changes: 2 additions & 2 deletions packages/rebox/web/src/build-web-app-release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import HtmlWebpackPlugin from 'html-webpack-plugin'
import InlineChunkHtmlPlugin from 'react-dev-utils/InlineChunkHtmlPlugin'
import TerserPlugin from 'terser-webpack-plugin'
import { isObject } from 'tsfn'
import webpack, { Stats } from 'webpack'
import type { Configuration as WebpackConfig } from 'webpack'
import webpack from 'webpack'
import type { Configuration as WebpackConfig, Stats } from 'webpack'
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer'
import { getBabelConfigBuildRelease } from './get-babel-config'

Expand Down
2 changes: 1 addition & 1 deletion packages/rebox/web/src/watch-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable max-params */
import path from 'path'
import { Plugin, Compiler } from 'webpack'
import type { Plugin, Compiler } from 'webpack'

type IWatch = {
watch: (files: string[], dirs: string[], missing: {}, startTime: number, options: {}, callback: () => {}, callbackUndelayed: () => {}) => void,
Expand Down
2 changes: 1 addition & 1 deletion packages/revert/block/src/PrimitiveBlockRef.native.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { forwardRef } from 'react'
import type { ForwardRefExoticComponent } from 'react'
import { View } from 'react-native'
import type { View } from 'react-native'
import { PrimitiveBlock } from './PrimitiveBlock'
import type { TPrimitiveBlock } from './types'

Expand Down
3 changes: 2 additions & 1 deletion packages/revert/layout/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { LAYOUT_SIZE_1, LAYOUT_SIZE_2, LAYOUT_SIZE_3, LAYOUT_SIZE_4, LAYOUT_SIZE_FIT } from './symbols'
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import type { LAYOUT_SIZE_1, LAYOUT_SIZE_2, LAYOUT_SIZE_3, LAYOUT_SIZE_4, LAYOUT_SIZE_FIT } from './symbols'

export type TLayoutSize = number | typeof LAYOUT_SIZE_1 | typeof LAYOUT_SIZE_2 | typeof LAYOUT_SIZE_3 | typeof LAYOUT_SIZE_4 | typeof LAYOUT_SIZE_FIT
export type TLayoutDirection = 'horizontal' | 'vertical'
3 changes: 2 additions & 1 deletion packages/revert/sandbox/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import type { FC } from 'react'
import type { TRequiredKeys, TOptionalKeys } from 'tsfn'
import type { TJsonMap } from 'typeon'
import type { TPopoverPlugin, TComponentWrapperPlugin } from './components/plugin-provider/types'
import { SYMBOL_CONTROL_COLOR, SYMBOL_CONTROL_SWITCH, SYMBOL_CONTROL_DROPDOWN } from './symbols'
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import type { SYMBOL_CONTROL_COLOR, SYMBOL_CONTROL_SWITCH, SYMBOL_CONTROL_DROPDOWN } from './symbols'

export type TApp = {
components: TComponents,
Expand Down
15 changes: 7 additions & 8 deletions packages/spyfn/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
const GET_SPY_CALLS_SYMBOL = Symbol('get-spy-calls')

type TProps <T extends any[]> = {
type TProps = {
index: number,
args: T,
args: any[],
}
type TCalls <T extends any> = T[]
type TSpy <T extends any[], R> = (...args: T) => R
type TSpy<R> = (...args: any[]) => R

export const createSpy = <T extends any[], R>(getResult: (props: TProps<T>) => R): TSpy<T, R> => {
const calls: TCalls<T> = []
export const createSpy = <R>(getResult: (props: TProps) => R): TSpy<R> => {
const calls = [] as any[]

const spy: TSpy<T, R> = (...args) => {
const spy: TSpy<R> = (...args) => {
if (args[0] === GET_SPY_CALLS_SYMBOL) {
return calls as any
}
Expand All @@ -28,4 +27,4 @@ export const createSpy = <T extends any[], R>(getResult: (props: TProps<T>) => R
return spy
}

export const getSpyCalls = (spy: TSpy<any, any>): TCalls<any> => spy(GET_SPY_CALLS_SYMBOL)
export const getSpyCalls = (spy: TSpy<any>): any[] => spy(GET_SPY_CALLS_SYMBOL)
2 changes: 1 addition & 1 deletion packages/start/plugin-lib-eslint/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import plugin from '@start/plugin'
import type { StartDataFilesProps, StartDataFile } from '@start/plugin'
import { ESLint } from 'eslint'
import type { ESLint } from 'eslint'

export default (userOptions?: ESLint.Options, formatterName = '') =>
plugin('eslint', ({ logMessage, logPath }) => async ({ files }: StartDataFilesProps) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/start/plugin-lib-typescript-check/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"devDependencies": {
"@types/tape": "^4.2.34",
"tape": "^5.0.0",
"typescript": "^3.8.0"
"typescript": "^4.0.0"
},
"peerDependencies": {
"typescript": "*"
Expand Down
2 changes: 1 addition & 1 deletion packages/start/plugin-lib-typescript-generate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"devDependencies": {
"@types/tape": "^4.2.34",
"tape": "^5.0.0",
"typescript": "^3.8.0"
"typescript": "^4.0.0"
},
"peerDependencies": {
"typescript": "*"
Expand Down
2 changes: 1 addition & 1 deletion packages/unchunk/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { EventEmitter } from 'events'
import type { EventEmitter } from 'events'

export const unchunkBuffer = (emitter: EventEmitter): Promise<Buffer> => {
let result = Buffer.alloc(0)
Expand Down
3 changes: 2 additions & 1 deletion packages/x-ray/serialize-react-tree/src/serialize-props.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable import/no-cycle, no-use-before-define */
/* eslint-disable @typescript-eslint/no-use-before-define */
/* eslint-disable import/no-cycle */
import { isValidElement } from 'react'
import { isObject, isArray, isFunction, isNull, isUndefined, isString, isNumber, isSymbol } from 'tsfn'
import { makeIndent, nextIndent, prevIndent } from './make-indent'
Expand Down
97 changes: 72 additions & 25 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1821,11 +1821,6 @@
"@types/node" "*"
"@types/tapable" "^0"

"@types/eslint-visitor-keys@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d"
integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==

"@types/eslint@^7.0.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.0.tgz#eb5c5b575237334df24c53195e37b53d66478d7b"
Expand Down Expand Up @@ -2268,19 +2263,32 @@
dependencies:
"@types/node" "*"

"@typescript-eslint/eslint-plugin@^3.5.0":
version "3.9.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.9.1.tgz#8cf27b6227d12d66dd8dc1f1a4b04d1daad51c2e"
integrity sha512-XIr+Mfv7i4paEdBf0JFdIl9/tVxyj+rlilWIfZ97Be0lZ7hPvUbS5iHt9Glc8kRI53dsr0PcAEudbf8rO2wGgg==
"@typescript-eslint/eslint-plugin@^4.0.1":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.0.1.tgz#88bde9239e29d688315718552cf80a3490491017"
integrity sha512-pQZtXupCn11O4AwpYVUX4PDFfmIJl90ZgrEBg0CEcqlwvPiG0uY81fimr1oMFblZnpKAq6prrT9a59pj1x58rw==
dependencies:
"@typescript-eslint/experimental-utils" "3.9.1"
"@typescript-eslint/experimental-utils" "4.0.1"
"@typescript-eslint/scope-manager" "4.0.1"
debug "^4.1.1"
functional-red-black-tree "^1.0.1"
regexpp "^3.0.0"
semver "^7.3.2"
tsutils "^3.17.1"

"@typescript-eslint/experimental-utils@3.9.1", "@typescript-eslint/experimental-utils@^3.7.1":
"@typescript-eslint/experimental-utils@4.0.1":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.0.1.tgz#7d9a3ab6821ad5274dad2186c1aa0d93afd696eb"
integrity sha512-gAqOjLiHoED79iYTt3F4uSHrYmg/GPz/zGezdB0jAdr6S6gwNiR/j7cTZ8nREKVzMVKLd9G3xbg1sV9GClW3sw==
dependencies:
"@types/json-schema" "^7.0.3"
"@typescript-eslint/scope-manager" "4.0.1"
"@typescript-eslint/types" "4.0.1"
"@typescript-eslint/typescript-estree" "4.0.1"
eslint-scope "^5.0.0"
eslint-utils "^2.0.0"

"@typescript-eslint/experimental-utils@^3.7.1":
version "3.9.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.9.1.tgz#b140b2dc7a7554a44f8a86fb6fe7cbfe57ca059e"
integrity sha512-lkiZ8iBBaYoyEKhCkkw4SAeatXyBq9Ece5bZXdLe1LWBUwTszGbmbiqmQbwWA8cSYDnjWXp9eDbXpf9Sn0hLAg==
Expand All @@ -2291,22 +2299,34 @@
eslint-scope "^5.0.0"
eslint-utils "^2.0.0"

"@typescript-eslint/parser@^3.5.0":
version "3.9.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.9.1.tgz#ab7983abaea0ae138ff5671c7c7739d8a191b181"
integrity sha512-y5QvPFUn4Vl4qM40lI+pNWhTcOWtpZAJ8pOEQ21fTTW4xTJkRplMjMRje7LYTXqVKKX9GJhcyweMz2+W1J5bMg==
"@typescript-eslint/parser@^4.0.1":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.0.1.tgz#73772080db7a7a4534a35d719e006f503e664dc3"
integrity sha512-1+qLmXHNAWSQ7RB6fdSQszAiA7JTwzakj5cNYjBTUmpH2cqilxMZEIV+DRKjVZs8NzP3ALmKexB0w/ExjcK9Iw==
dependencies:
"@types/eslint-visitor-keys" "^1.0.0"
"@typescript-eslint/experimental-utils" "3.9.1"
"@typescript-eslint/types" "3.9.1"
"@typescript-eslint/typescript-estree" "3.9.1"
eslint-visitor-keys "^1.1.0"
"@typescript-eslint/scope-manager" "4.0.1"
"@typescript-eslint/types" "4.0.1"
"@typescript-eslint/typescript-estree" "4.0.1"
debug "^4.1.1"

"@typescript-eslint/scope-manager@4.0.1":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.0.1.tgz#24d93c3000bdfcc5a157dc4d32b742405a8631b5"
integrity sha512-u3YEXVJ8jsj7QCJk3om0Y457fy2euEOkkzxIB/LKU3MdyI+FJ2gI0M4aKEaXzwCSfNDiZ13a3lDo5DVozc+XLQ==
dependencies:
"@typescript-eslint/types" "4.0.1"
"@typescript-eslint/visitor-keys" "4.0.1"

"@typescript-eslint/types@3.9.1":
version "3.9.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.9.1.tgz#b2a6eaac843cf2f2777b3f2464fb1fbce5111416"
integrity sha512-15JcTlNQE1BsYy5NBhctnEhEoctjXOjOK+Q+rk8ugC+WXU9rAcS2BYhoh6X4rOaXJEpIYDl+p7ix+A5U0BqPTw==

"@typescript-eslint/types@4.0.1":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.0.1.tgz#1cf72582f764931f085cb8230ff215980fe467b2"
integrity sha512-S+gD3fgbkZYW2rnbjugNMqibm9HpEjqZBZkTiI3PwbbNGWmAcxolWIUwZ0SKeG4Dy2ktpKKaI/6+HGYVH8Qrlg==

"@typescript-eslint/typescript-estree@3.9.1":
version "3.9.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.9.1.tgz#fd81cada74bc8a7f3a2345b00897acb087935779"
Expand All @@ -2321,13 +2341,35 @@
semver "^7.3.2"
tsutils "^3.17.1"

"@typescript-eslint/typescript-estree@4.0.1":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.0.1.tgz#29a43c7060641ec51c902d9f50ac7c5866ec479f"
integrity sha512-zGzleORFXrRWRJAMLTB2iJD1IZbCPkg4hsI8mGdpYlKaqzvKYSEWVAYh14eauaR+qIoZVWrXgYSXqLtTlxotiw==
dependencies:
"@typescript-eslint/types" "4.0.1"
"@typescript-eslint/visitor-keys" "4.0.1"
debug "^4.1.1"
globby "^11.0.1"
is-glob "^4.0.1"
lodash "^4.17.15"
semver "^7.3.2"
tsutils "^3.17.1"

"@typescript-eslint/visitor-keys@3.9.1":
version "3.9.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.9.1.tgz#92af3747cdb71509199a8f7a4f00b41d636551d1"
integrity sha512-zxdtUjeoSh+prCpogswMwVUJfEFmCOjdzK9rpNjNBfm6EyPt99x3RrJoBOGZO23FCt0WPKUCOL5mb/9D5LjdwQ==
dependencies:
eslint-visitor-keys "^1.1.0"

"@typescript-eslint/visitor-keys@4.0.1":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.0.1.tgz#d4e8de62775f2a6db71c7e8539633680039fdd6c"
integrity sha512-yBSqd6FjnTzbg5RUy9J+9kJEyQjTI34JdGMJz+9ttlJzLCnGkBikxw+N5n2VDcc3CesbIEJ0MnZc5uRYnrEnCw==
dependencies:
"@typescript-eslint/types" "4.0.1"
eslint-visitor-keys "^2.0.0"

"@webassemblyjs/ast@1.9.0":
version "1.9.0"
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
Expand Down Expand Up @@ -5073,6 +5115,11 @@ eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0:
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e"
integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==

eslint-visitor-keys@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8"
integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==

eslint@^7.0.0, eslint@^7.3.1:
version "7.7.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.7.0.tgz#18beba51411927c4b64da0a8ceadefe4030d6073"
Expand Down Expand Up @@ -6063,7 +6110,7 @@ globby@8.0.2:
pify "^3.0.0"
slash "^1.0.0"

globby@^11.0.0:
globby@^11.0.0, globby@^11.0.1:
version "11.0.1"
resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357"
integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==
Expand Down Expand Up @@ -11587,10 +11634,10 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=

typescript@^3.8.0:
version "3.9.7"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa"
integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==
typescript@^4.0.0:
version "4.0.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.0.2.tgz#7ea7c88777c723c681e33bf7988be5d008d05ac2"
integrity sha512-e4ERvRV2wb+rRZ/IQeb3jm2VxBsirQLpQhdxplZ2MEzGvDkkMmPglecnNDfSUBivMjP93vRbngYYDQqQ/78bcQ==

ua-parser-js@^0.7.18:
version "0.7.21"
Expand Down