Skip to content

Commit b5323ef

Browse files
authored
fix dep type errors (#101)
1 parent 4fe8785 commit b5323ef

File tree

9 files changed

+170
-21
lines changed

9 files changed

+170
-21
lines changed

index.d.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import {Config as JestConfig} from '@jest/types';
1111
import { CoverageMapData } from 'istanbul-lib-coverage';
1212
import ProjectWorkspace, {ProjectWorkspaceConfig, createProjectWorkspace, LoginShell } from './build/project_workspace';
1313
import {SourceLocation} from '@babel/types';
14-
import { SnapshotData } from 'jest-snapshot/build/types';
15-
import parse, {JESParserPluginOptions, JESParserOptions} from './build/parsers/';
16-
export {parse, JESParserPluginOptions, JESParserOptions, createProjectWorkspace, ProjectWorkspaceConfig, ProjectWorkspace, LoginShell};
14+
import {JESParserPluginOptions, JESParserOptions} from './build/parsers/helper';
15+
export {JESParserPluginOptions, JESParserOptions, createProjectWorkspace, ProjectWorkspaceConfig, ProjectWorkspace, LoginShell};
1716
export interface RunArgs {
1817
args: string[];
1918
replace?: boolean; // default is false
2019
}
20+
export type SnapshotData = Record<string, string>;
2121
export interface Options {
2222
createProcess?: (
2323
workspace: ProjectWorkspace,
@@ -49,9 +49,6 @@ export interface JestSettings {
4949
}
5050

5151
export function getSettings(workspace: ProjectWorkspace, options?: Options): Promise<JestSettings>;
52-
53-
54-
5552
export interface IParseResults {
5653
describeBlocks: Array<DescribeBlock>;
5754
expects: Array<Expect>;
@@ -60,6 +57,7 @@ export interface IParseResults {
6057
file: string;
6158
}
6259

60+
export function parse(file: string, data?: string, options?: JESParserOptions): IParseResults;
6361
export interface Location {
6462
column: number;
6563
line: number;

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-editor-support",
3-
"version": "31.0.0",
3+
"version": "31.0.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/jest-community/jest-editor-support"
@@ -31,13 +31,14 @@
3131
},
3232
"devDependencies": {
3333
"@babel/cli": "^7.19.3",
34-
"@babel/core": "^7.20.5",
34+
"@babel/core": "^7.20.12",
3535
"@babel/eslint-parser": "^7.19.1",
3636
"@babel/eslint-plugin": "^7.19.1",
3737
"@babel/plugin-transform-react-jsx": "^7.19.0",
3838
"@babel/preset-env": "^7.20.2",
3939
"@babel/preset-flow": "^7.18.6",
4040
"@babel/preset-typescript": "^7.18.6",
41+
"@jest/types": "^29.3.1",
4142
"@types/jest": "^29.2.4",
4243
"@types/node": "^18.11.16",
4344
"@typescript-eslint/eslint-plugin": "^5.46.1",
@@ -59,11 +60,10 @@
5960
"typescript": "^4.9.4"
6061
},
6162
"dependencies": {
62-
"@babel/parser": "^7.20.5",
63-
"@babel/runtime": "^7.20.6",
64-
"@babel/traverse": "^7.20.5",
65-
"@babel/types": "^7.20.5",
66-
"@jest/types": "^29.3.1",
63+
"@babel/parser": "^7.20.7",
64+
"@babel/runtime": "^7.20.7",
65+
"@babel/traverse": "7.20.10",
66+
"@babel/types": "^7.20.7",
6767
"core-js": "^3.17.3",
6868
"jest-snapshot": "^27.2.0"
6969
},

src/Process.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
*/
88

99
import {ChildProcess, spawn} from 'child_process';
10-
import ProjectWorkspace, {LoginShell} from './project_workspace';
10+
import type ProjectWorkspace from './project_workspace';
11+
import type {LoginShell} from './project_workspace';
1112

1213
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-member-access
1314
const isLoginShell = (arg: any): arg is LoginShell => arg && typeof arg.path === 'string' && Array.isArray(arg.args);

src/Snapshot.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
*/
1010

1111
import traverse from '@babel/traverse';
12-
import {buildSnapshotResolver, type SnapshotResolver, type SnapshotData, utils} from 'jest-snapshot';
12+
import type {SnapshotResolver, SnapshotData} from 'jest-snapshot';
13+
import {buildSnapshotResolver, utils} from 'jest-snapshot';
1314
import type {ProjectConfig} from '../types/Config';
1415

1516
import {getASTfor} from './parsers/babel_parser';

src/__tests__/parsers/babel_parser.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313

1414
import * as path from 'path';
15-
import {NamedBlock, ParseResult} from '../..';
15+
import type {NamedBlock, ParseResult} from '../..';
1616
import {parse} from '../../parsers/babel_parser';
1717
import {JESParserOptions, parseOptions} from '../../parsers/helper';
1818

src/parsers/helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*/
88

9-
import {DecoratorsPluginOptions, ParserOptions, ParserPluginWithOptions, type ParserPlugin} from '@babel/parser';
9+
import type {DecoratorsPluginOptions, ParserOptions, ParserPluginWithOptions, ParserPlugin} from '@babel/parser';
1010

1111
// taken from https://github.com/babel/babel/blob/main/packages/babel-parser/typings/babel-parser.d.ts
1212
// but comment out a few file-based and either-or plugins

src/parsers/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*/
88

9-
import {ParseResult} from './parser_nodes';
9+
import type {ParseResult} from './parser_nodes';
1010
import {parse as babelParser} from './babel_parser';
1111
import {JESParserOptions, JESParserPluginOptions, parseOptions} from './helper';
1212
export {JESParserOptions, JESParserPluginOptions};

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"outDir": "./build", /* Redirect output structure to the directory. */
88
"strict": false, /* Enable all strict type-checking options. */
99
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */
10-
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
10+
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
11+
"importsNotUsedAsValues": "error"
1112
},
1213
"include": ["./src/**/*.ts", "src/__tests__/parsers/helper.test.js"],
1314
}

yarn.lock

Lines changed: 150 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@
3838
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733"
3939
integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==
4040

41-
"@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.20.5", "@babel/core@^7.7.2":
41+
"@babel/compat-data@^7.20.5":
42+
version "7.20.10"
43+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.10.tgz#9d92fa81b87542fff50e848ed585b4212c1d34ec"
44+
integrity sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==
45+
46+
"@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.7.2":
4247
version "7.20.5"
4348
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113"
4449
integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==
@@ -59,6 +64,27 @@
5964
json5 "^2.2.1"
6065
semver "^6.3.0"
6166

67+
"@babel/core@^7.20.12":
68+
version "7.20.12"
69+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d"
70+
integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==
71+
dependencies:
72+
"@ampproject/remapping" "^2.1.0"
73+
"@babel/code-frame" "^7.18.6"
74+
"@babel/generator" "^7.20.7"
75+
"@babel/helper-compilation-targets" "^7.20.7"
76+
"@babel/helper-module-transforms" "^7.20.11"
77+
"@babel/helpers" "^7.20.7"
78+
"@babel/parser" "^7.20.7"
79+
"@babel/template" "^7.20.7"
80+
"@babel/traverse" "^7.20.12"
81+
"@babel/types" "^7.20.7"
82+
convert-source-map "^1.7.0"
83+
debug "^4.1.0"
84+
gensync "^1.0.0-beta.2"
85+
json5 "^2.2.2"
86+
semver "^6.3.0"
87+
6288
"@babel/eslint-parser@^7.19.1":
6389
version "7.19.1"
6490
resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz#4f68f6b0825489e00a24b41b6a1ae35414ecd2f4"
@@ -84,6 +110,15 @@
84110
"@jridgewell/gen-mapping" "^0.3.2"
85111
jsesc "^2.5.1"
86112

113+
"@babel/generator@^7.20.7":
114+
version "7.20.7"
115+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.7.tgz#f8ef57c8242665c5929fe2e8d82ba75460187b4a"
116+
integrity sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==
117+
dependencies:
118+
"@babel/types" "^7.20.7"
119+
"@jridgewell/gen-mapping" "^0.3.2"
120+
jsesc "^2.5.1"
121+
87122
"@babel/helper-annotate-as-pure@^7.18.6":
88123
version "7.18.6"
89124
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb"
@@ -109,6 +144,17 @@
109144
browserslist "^4.21.3"
110145
semver "^6.3.0"
111146

147+
"@babel/helper-compilation-targets@^7.20.7":
148+
version "7.20.7"
149+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb"
150+
integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==
151+
dependencies:
152+
"@babel/compat-data" "^7.20.5"
153+
"@babel/helper-validator-option" "^7.18.6"
154+
browserslist "^4.21.3"
155+
lru-cache "^5.1.1"
156+
semver "^6.3.0"
157+
112158
"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.2", "@babel/helper-create-class-features-plugin@^7.20.5":
113159
version "7.20.5"
114160
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.5.tgz#327154eedfb12e977baa4ecc72e5806720a85a06"
@@ -197,6 +243,20 @@
197243
"@babel/traverse" "^7.20.1"
198244
"@babel/types" "^7.20.2"
199245

246+
"@babel/helper-module-transforms@^7.20.11":
247+
version "7.20.11"
248+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz#df4c7af713c557938c50ea3ad0117a7944b2f1b0"
249+
integrity sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==
250+
dependencies:
251+
"@babel/helper-environment-visitor" "^7.18.9"
252+
"@babel/helper-module-imports" "^7.18.6"
253+
"@babel/helper-simple-access" "^7.20.2"
254+
"@babel/helper-split-export-declaration" "^7.18.6"
255+
"@babel/helper-validator-identifier" "^7.19.1"
256+
"@babel/template" "^7.20.7"
257+
"@babel/traverse" "^7.20.10"
258+
"@babel/types" "^7.20.7"
259+
200260
"@babel/helper-optimise-call-expression@^7.18.6":
201261
version "7.18.6"
202262
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe"
@@ -285,6 +345,15 @@
285345
"@babel/traverse" "^7.20.5"
286346
"@babel/types" "^7.20.5"
287347

348+
"@babel/helpers@^7.20.7":
349+
version "7.20.7"
350+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.7.tgz#04502ff0feecc9f20ecfaad120a18f011a8e6dce"
351+
integrity sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==
352+
dependencies:
353+
"@babel/template" "^7.20.7"
354+
"@babel/traverse" "^7.20.7"
355+
"@babel/types" "^7.20.7"
356+
288357
"@babel/highlight@^7.18.6":
289358
version "7.18.6"
290359
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf"
@@ -299,6 +368,11 @@
299368
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8"
300369
integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==
301370

371+
"@babel/parser@^7.20.7":
372+
version "7.20.7"
373+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.7.tgz#66fe23b3c8569220817d5feb8b9dcdc95bb4f71b"
374+
integrity sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==
375+
302376
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
303377
version "7.18.6"
304378
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2"
@@ -972,7 +1046,14 @@
9721046
"@babel/helper-validator-option" "^7.18.6"
9731047
"@babel/plugin-transform-typescript" "^7.18.6"
9741048

975-
"@babel/runtime@^7.20.6", "@babel/runtime@^7.8.4":
1049+
"@babel/runtime@^7.20.7":
1050+
version "7.20.7"
1051+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
1052+
integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==
1053+
dependencies:
1054+
regenerator-runtime "^0.13.11"
1055+
1056+
"@babel/runtime@^7.8.4":
9761057
version "7.20.6"
9771058
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3"
9781059
integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==
@@ -988,6 +1069,31 @@
9881069
"@babel/parser" "^7.18.10"
9891070
"@babel/types" "^7.18.10"
9901071

1072+
"@babel/template@^7.20.7":
1073+
version "7.20.7"
1074+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
1075+
integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
1076+
dependencies:
1077+
"@babel/code-frame" "^7.18.6"
1078+
"@babel/parser" "^7.20.7"
1079+
"@babel/types" "^7.20.7"
1080+
1081+
1082+
version "7.20.10"
1083+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.10.tgz#2bf98239597fcec12f842756f186a9dde6d09230"
1084+
integrity sha512-oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg==
1085+
dependencies:
1086+
"@babel/code-frame" "^7.18.6"
1087+
"@babel/generator" "^7.20.7"
1088+
"@babel/helper-environment-visitor" "^7.18.9"
1089+
"@babel/helper-function-name" "^7.19.0"
1090+
"@babel/helper-hoist-variables" "^7.18.6"
1091+
"@babel/helper-split-export-declaration" "^7.18.6"
1092+
"@babel/parser" "^7.20.7"
1093+
"@babel/types" "^7.20.7"
1094+
debug "^4.1.0"
1095+
globals "^11.1.0"
1096+
9911097
"@babel/traverse@^7.19.1", "@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5", "@babel/traverse@^7.7.2":
9921098
version "7.20.5"
9931099
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133"
@@ -1004,6 +1110,22 @@
10041110
debug "^4.1.0"
10051111
globals "^11.1.0"
10061112

1113+
"@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.7":
1114+
version "7.20.12"
1115+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.12.tgz#7f0f787b3a67ca4475adef1f56cb94f6abd4a4b5"
1116+
integrity sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==
1117+
dependencies:
1118+
"@babel/code-frame" "^7.18.6"
1119+
"@babel/generator" "^7.20.7"
1120+
"@babel/helper-environment-visitor" "^7.18.9"
1121+
"@babel/helper-function-name" "^7.19.0"
1122+
"@babel/helper-hoist-variables" "^7.18.6"
1123+
"@babel/helper-split-export-declaration" "^7.18.6"
1124+
"@babel/parser" "^7.20.7"
1125+
"@babel/types" "^7.20.7"
1126+
debug "^4.1.0"
1127+
globals "^11.1.0"
1128+
10071129
"@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
10081130
version "7.20.5"
10091131
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84"
@@ -1013,6 +1135,15 @@
10131135
"@babel/helper-validator-identifier" "^7.19.1"
10141136
to-fast-properties "^2.0.0"
10151137

1138+
"@babel/types@^7.20.7":
1139+
version "7.20.7"
1140+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f"
1141+
integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==
1142+
dependencies:
1143+
"@babel/helper-string-parser" "^7.19.4"
1144+
"@babel/helper-validator-identifier" "^7.19.1"
1145+
to-fast-properties "^2.0.0"
1146+
10161147
"@bcoe/v8-coverage@^0.2.3":
10171148
version "0.2.3"
10181149
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -3628,6 +3759,11 @@ json5@^2.2.1:
36283759
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.2.tgz#64471c5bdcc564c18f7c1d4df2e2297f2457c5ab"
36293760
integrity sha512-46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ==
36303761

3762+
json5@^2.2.2:
3763+
version "2.2.3"
3764+
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
3765+
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
3766+
36313767
kleur@^3.0.3:
36323768
version "3.0.3"
36333769
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
@@ -3728,6 +3864,13 @@ log-update@^4.0.0:
37283864
slice-ansi "^4.0.0"
37293865
wrap-ansi "^6.2.0"
37303866

3867+
lru-cache@^5.1.1:
3868+
version "5.1.1"
3869+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
3870+
integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
3871+
dependencies:
3872+
yallist "^3.0.2"
3873+
37313874
lru-cache@^6.0.0:
37323875
version "6.0.0"
37333876
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
@@ -4750,6 +4893,11 @@ y18n@^5.0.5:
47504893
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
47514894
integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
47524895

4896+
yallist@^3.0.2:
4897+
version "3.1.1"
4898+
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
4899+
integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
4900+
47534901
yallist@^4.0.0:
47544902
version "4.0.0"
47554903
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"

0 commit comments

Comments
 (0)