Skip to content

Commit 06fc226

Browse files
committed
Bump packages (#10404)
* Bump dependency-graph to ^1.0.0 * Bump nock to 14.0.0 * Bump debounce to v2 and remove types package * Bump ESM packages - chalk - detect-indent - log-symbols - auto-bind * Revert "Bump ESM packages" This reverts commit 7b79aaa. * Migrate jitit to v2 * Bump cosmiconfig to v9 * Add changesets * Use min. jiti v2.3.0 to handle default import like before
1 parent 81c5a7d commit 06fc226

File tree

9 files changed

+135
-28
lines changed

9 files changed

+135
-28
lines changed

.changeset/flat-ghosts-push.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@graphql-codegen/testing': major
3+
---
4+
5+
Bump depdendencies major versions:
6+
7+
- nock v14

.changeset/tall-wasps-know.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@graphql-codegen/visitor-plugin-common': major
3+
---
4+
5+
Bump dependencies major versions:
6+
7+
- dependency-graph to v1

.changeset/tame-radios-leave.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'@graphql-codegen/cli': major
3+
---
4+
5+
Bump dependencies major versions:
6+
7+
- cosmiconfig v9
8+
- debounce v2
9+
- jiti v2.3

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
"**/@types/graphql-upload/graphql": "^16.0.0",
9595
"ts-node": "10.9.2",
9696
"typescript": "5.5.4",
97-
"cosmiconfig": "8.3.6",
9897
"eslint-plugin-promise": "7.1.0"
9998
}
10099
}

packages/graphql-codegen-cli/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@
5757
"@graphql-tools/utils": "^10.0.0",
5858
"@whatwg-node/fetch": "^0.10.0",
5959
"chalk": "^4.1.0",
60-
"cosmiconfig": "^8.1.3",
61-
"debounce": "^1.2.0",
60+
"cosmiconfig": "^9.0.0",
61+
"debounce": "^2.0.0",
6262
"detect-indent": "^6.0.0",
6363
"graphql-config": "^5.1.1",
6464
"inquirer": "^8.0.0",
6565
"is-glob": "^4.0.1",
66-
"jiti": "^1.17.1",
66+
"jiti": "^2.3.0",
6767
"json-to-pretty-yaml": "^1.2.2",
6868
"listr2": "^4.0.5",
6969
"log-symbols": "^4.0.0",
@@ -78,7 +78,6 @@
7878
"devDependencies": {
7979
"@graphql-tools/merge": "9.0.6",
8080
"@parcel/watcher": "^2.1.0",
81-
"@types/debounce": "1.2.4",
8281
"@types/inquirer": "8.2.10",
8382
"@types/is-glob": "4.0.4",
8483
"@types/js-yaml": "4.0.9",

packages/graphql-codegen-cli/src/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
Types,
1212
} from '@graphql-codegen/plugin-helpers';
1313
import { cosmiconfig, defaultLoaders } from 'cosmiconfig';
14-
import jiti from 'jiti';
14+
import { createJiti } from 'jiti';
1515
import { GraphQLSchema, GraphQLSchemaExtensions, print } from 'graphql';
1616
import { GraphQLConfig } from 'graphql-config';
1717
import { env } from 'string-env-interpolation';
@@ -75,8 +75,8 @@ function customLoader(ext: 'json' | 'yaml' | 'js' | 'ts' | 'mts' | 'cts'): Codeg
7575
}
7676

7777
if (ext === 'ts') {
78-
const jitiLoader = jiti('', { interopDefault: true });
79-
return jitiLoader(filepath);
78+
const jitiLoader = createJiti('');
79+
return jitiLoader.import(filepath, { default: true });
8080
}
8181
};
8282
}

packages/plugins/other/visitor-plugin-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@graphql-tools/relay-operation-optimizer": "^7.0.0",
1818
"@graphql-tools/utils": "^10.0.0",
1919
"auto-bind": "~4.0.0",
20-
"dependency-graph": "^0.11.0",
20+
"dependency-graph": "^1.0.0",
2121
"graphql-tag": "^2.11.0",
2222
"parse-filepath": "^1.0.2",
2323
"change-case-all": "1.0.15",

packages/utils/graphql-codegen-testing/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"common-tags": "^1.8.0",
4545
"lz-string": "^1.4.4",
4646
"graphql-helix": "1.13.0",
47-
"nock": "13.5.4",
47+
"nock": "^14.0.0",
4848
"tslib": "~2.6.0"
4949
},
5050
"devDependencies": {

yarn.lock

Lines changed: 104 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3718,6 +3718,18 @@
37183718
dependencies:
37193719
"@monaco-editor/loader" "^1.4.0"
37203720

3721+
"@mswjs/interceptors@^0.39.5":
3722+
version "0.39.6"
3723+
resolved "https://registry.yarnpkg.com/@mswjs/interceptors/-/interceptors-0.39.6.tgz#44094a578f20da4749d1a0eaf3cdb7973604004b"
3724+
integrity sha512-bndDP83naYYkfayr/qhBHMhk0YGwS1iv6vaEGcr0SQbO0IZtbOPqjKjds/WcG+bJA+1T5vCx6kprKOzn5Bg+Vw==
3725+
dependencies:
3726+
"@open-draft/deferred-promise" "^2.2.0"
3727+
"@open-draft/logger" "^0.3.0"
3728+
"@open-draft/until" "^2.0.0"
3729+
is-node-process "^1.2.0"
3730+
outvariant "^1.4.3"
3731+
strict-event-emitter "^0.5.1"
3732+
37213733
"@napi-rs/[email protected]":
37223734
version "0.1.9"
37233735
resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-android-arm-eabi/-/simple-git-android-arm-eabi-0.1.9.tgz#0326fbc4ffafb678bda3474018e2a24a8d2a21b6"
@@ -3971,6 +3983,24 @@
39713983
resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-2.0.0.tgz#c44d3a7c6d5c184bb6036f4d5995eee298945815"
39723984
integrity sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==
39733985

3986+
"@open-draft/deferred-promise@^2.2.0":
3987+
version "2.2.0"
3988+
resolved "https://registry.yarnpkg.com/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz#4a822d10f6f0e316be4d67b4d4f8c9a124b073bd"
3989+
integrity sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==
3990+
3991+
"@open-draft/logger@^0.3.0":
3992+
version "0.3.0"
3993+
resolved "https://registry.yarnpkg.com/@open-draft/logger/-/logger-0.3.0.tgz#2b3ab1242b360aa0adb28b85f5d7da1c133a0954"
3994+
integrity sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==
3995+
dependencies:
3996+
is-node-process "^1.2.0"
3997+
outvariant "^1.4.0"
3998+
3999+
"@open-draft/until@^2.0.0":
4000+
version "2.1.0"
4001+
resolved "https://registry.yarnpkg.com/@open-draft/until/-/until-2.1.0.tgz#0acf32f470af2ceaf47f095cdecd40d68666efda"
4002+
integrity sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==
4003+
39744004
39754005
version "2.4.1"
39764006
resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz#c2c19a3c442313ff007d2d7a9c2c1dd3e1c9ca84"
@@ -4754,11 +4784,6 @@
47544784
dependencies:
47554785
"@types/node" "*"
47564786

4757-
4758-
version "1.2.4"
4759-
resolved "https://registry.yarnpkg.com/@types/debounce/-/debounce-1.2.4.tgz#cb7e85d9ad5ababfac2f27183e8ac8b576b2abb3"
4760-
integrity sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==
4761-
47624787
"@types/debug@^4.0.0":
47634788
version "4.1.7"
47644789
resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82"
@@ -4959,6 +4984,11 @@
49594984
resolved "https://registry.yarnpkg.com/@types/parse-filepath/-/parse-filepath-1.0.2.tgz#417f313bbb10526e7adb06e037e53040fb4d7f93"
49604985
integrity sha512-CcyaQuvlpejsJR57RWxUR++E7zTKvbDDotZyiKaJsZdlbV8JfHgRYj4aZszEGKVLhiX0pbD8QeAuzEFUol4mRA==
49614986

4987+
"@types/parse-json@^4.0.0":
4988+
version "4.0.2"
4989+
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.2.tgz#5950e50960793055845e956c427fc2b0d70c5239"
4990+
integrity sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==
4991+
49624992
"@types/prettier@^2.1.5":
49634993
version "2.7.2"
49644994
resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.2.tgz#6c2324641cc4ba050a8c710b2b251b377581fbf0"
@@ -6800,15 +6830,36 @@ cose-base@^2.2.0:
68006830
dependencies:
68016831
layout-base "^2.0.0"
68026832

6803-
[email protected], [email protected], cosmiconfig@^7.0.0, cosmiconfig@^8.1.3, cosmiconfig@^9.0.0:
6804-
version "8.3.6"
6805-
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3"
6806-
integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==
6833+
6834+
version "8.0.0"
6835+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz#e9feae014eab580f858f8a0288f38997a7bebe97"
6836+
integrity sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==
6837+
dependencies:
6838+
import-fresh "^3.2.1"
6839+
js-yaml "^4.1.0"
6840+
parse-json "^5.0.0"
6841+
path-type "^4.0.0"
6842+
6843+
cosmiconfig@^7.0.0:
6844+
version "7.1.0"
6845+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6"
6846+
integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
6847+
dependencies:
6848+
"@types/parse-json" "^4.0.0"
6849+
import-fresh "^3.2.1"
6850+
parse-json "^5.0.0"
6851+
path-type "^4.0.0"
6852+
yaml "^1.10.0"
6853+
6854+
cosmiconfig@^9.0.0:
6855+
version "9.0.0"
6856+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-9.0.0.tgz#34c3fc58287b915f3ae905ab6dc3de258b55ad9d"
6857+
integrity sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==
68076858
dependencies:
6859+
env-paths "^2.2.1"
68086860
import-fresh "^3.3.0"
68096861
js-yaml "^4.1.0"
68106862
parse-json "^5.2.0"
6811-
path-type "^4.0.0"
68126863

68136864
create-require@^1.1.0:
68146865
version "1.1.1"
@@ -7271,11 +7322,16 @@ de-indent@^1.0.2:
72717322
resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d"
72727323
integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==
72737324

7274-
debounce@^1.2.0, debounce@^1.2.1:
7325+
debounce@^1.2.1:
72757326
version "1.2.1"
72767327
resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5"
72777328
integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
72787329

7330+
debounce@^2.0.0:
7331+
version "2.2.0"
7332+
resolved "https://registry.yarnpkg.com/debounce/-/debounce-2.2.0.tgz#f895fa2fbdb579a0f0d3dcf5dde19657e50eaad5"
7333+
integrity sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==
7334+
72797335
72807336
version "2.6.9"
72817337
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
@@ -7393,6 +7449,11 @@ dependency-graph@^0.11.0:
73937449
resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.11.0.tgz#ac0ce7ed68a54da22165a85e97a01d53f5eb2e27"
73947450
integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==
73957451

7452+
dependency-graph@^1.0.0:
7453+
version "1.0.0"
7454+
resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-1.0.0.tgz#bb5e85aec1310bc13b22dbd76e3196c4ee4c10d2"
7455+
integrity sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==
7456+
73967457
dequal@^2.0.0, dequal@^2.0.3:
73977458
version "2.0.3"
73987459
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
@@ -7576,6 +7637,11 @@ entities@^4.4.0, entities@^4.5.0:
75767637
resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
75777638
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
75787639

7640+
env-paths@^2.2.1:
7641+
version "2.2.1"
7642+
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
7643+
integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==
7644+
75797645
environment@^1.0.0:
75807646
version "1.1.0"
75817647
resolved "https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz#8e86c66b180f363c7ab311787e0259665f45a9f1"
@@ -9880,6 +9946,11 @@ is-negative-zero@^2.0.3:
98809946
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747"
98819947
integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
98829948

9949+
is-node-process@^1.2.0:
9950+
version "1.2.0"
9951+
resolved "https://registry.yarnpkg.com/is-node-process/-/is-node-process-1.2.0.tgz#ea02a1b90ddb3934a19aea414e88edef7e11d134"
9952+
integrity sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==
9953+
98839954
is-number-object@^1.0.4:
98849955
version "1.0.7"
98859956
resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
@@ -10594,11 +10665,16 @@ [email protected]:
1059410665
resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.17.1.tgz#264daa43ee89a03e8be28c3d712ccc4eb9f1e8ed"
1059510666
integrity sha512-NZIITw8uZQFuzQimqjUxIrIcEdxYDFIe/0xYfIlVXTkiBjjyBEvgasj5bb0/cHtPRD/NziPbT312sFrkI5ALpw==
1059610667

10597-
jiti@^1.17.1, jiti@^1.18.2, jiti@^1.21.6:
10668+
jiti@^1.18.2, jiti@^1.21.6:
1059810669
version "1.21.7"
1059910670
resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.7.tgz#9dd81043424a3d28458b193d965f0d18a2300ba9"
1060010671
integrity sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==
1060110672

10673+
jiti@^2.3.0:
10674+
version "2.5.1"
10675+
resolved "https://registry.yarnpkg.com/jiti/-/jiti-2.5.1.tgz#bd099c1c2be1c59bbea4e5adcd127363446759d0"
10676+
integrity sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==
10677+
1060210678
joi@^17.11.0:
1060310679
version "17.11.0"
1060410680
resolved "https://registry.yarnpkg.com/joi/-/joi-17.11.0.tgz#aa9da753578ec7720e6f0ca2c7046996ed04fc1a"
@@ -12344,12 +12420,12 @@ no-case@^3.0.4:
1234412420
lower-case "^2.0.2"
1234512421
tslib "^2.0.3"
1234612422

12347-
nock@13.5.4:
12348-
version "13.5.4"
12349-
resolved "https://registry.yarnpkg.com/nock/-/nock-13.5.4.tgz#8918f0addc70a63736170fef7106a9721e0dc479"
12350-
integrity sha512-yAyTfdeNJGGBFxWdzSKCBYxs5FxLbCg5X5Q4ets974hcQzG1+qCxvIyOo4j2Ry6MUlhWVMX4OoYDefAIIwupjw==
12423+
nock@^14.0.0:
12424+
version "14.0.10"
12425+
resolved "https://registry.yarnpkg.com/nock/-/nock-14.0.10.tgz#d6f4e73e1c6b4b7aa19d852176e68940e15cd19d"
12426+
integrity sha512-Q7HjkpyPeLa0ZVZC5qpxBt5EyLczFJ91MEewQiIi9taWuA0KB/MDJlUWtON+7dGouVdADTQsf9RA7TZk6D8VMw==
1235112427
dependencies:
12352-
debug "^4.1.0"
12428+
"@mswjs/interceptors" "^0.39.5"
1235312429
json-stringify-safe "^5.0.1"
1235412430
propagate "^2.0.0"
1235512431

@@ -12624,6 +12700,11 @@ outdent@^0.5.0:
1262412700
resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff"
1262512701
integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==
1262612702

12703+
outvariant@^1.4.0, outvariant@^1.4.3:
12704+
version "1.4.3"
12705+
resolved "https://registry.yarnpkg.com/outvariant/-/outvariant-1.4.3.tgz#221c1bfc093e8fec7075497e7799fdbf43d14873"
12706+
integrity sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==
12707+
1262712708
p-filter@^2.1.0:
1262812709
version "2.1.0"
1262912710
resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c"
@@ -14551,6 +14632,11 @@ streamsearch@^1.1.0:
1455114632
resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764"
1455214633
integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==
1455314634

14635+
strict-event-emitter@^0.5.1:
14636+
version "0.5.1"
14637+
resolved "https://registry.yarnpkg.com/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz#1602ece81c51574ca39c6815e09f1a3e8550bd93"
14638+
integrity sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==
14639+
1455414640
string-argv@~0.3.2:
1455514641
version "0.3.2"
1455614642
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6"
@@ -16265,7 +16351,7 @@ yaml-eslint-parser@^1.2.1:
1626516351
lodash "^4.17.21"
1626616352
yaml "^2.0.0"
1626716353

16268-
yaml@^1.10.2:
16354+
yaml@^1.10.0, yaml@^1.10.2:
1626916355
version "1.10.2"
1627016356
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
1627116357
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==

0 commit comments

Comments
 (0)