Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 29d8e41

Browse files
authored
Add matrix-web-i18n dependency and fix TranslationStringsObject type (#20)
1 parent 05d4e04 commit 29d8e41

File tree

4 files changed

+191
-5
lines changed

4 files changed

+191
-5
lines changed

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,16 @@
4343
"@typescript-eslint/eslint-plugin": "^5.18.0",
4444
"@typescript-eslint/parser": "^5.18.0",
4545
"eslint": "^8.12.0",
46-
"eslint-config-prettier": "^8.5.0",
4746
"eslint-config-google": "^0.14.0",
47+
"eslint-config-prettier": "^8.5.0",
4848
"eslint-plugin-import": "^2.26.0",
4949
"eslint-plugin-matrix-org": "^0.9.0",
5050
"eslint-plugin-unicorn": "^47.0.0",
5151
"jest": "^27.5.1",
52+
"matrix-web-i18n": "^3.1.1",
53+
"prettier": "2.8.8",
5254
"react": "17.0.2",
5355
"react-dom": "^17.0.2",
54-
"prettier": "2.8.8",
5556
"rimraf": "^3.0.2",
5657
"ts-jest": "^27.1.4",
5758
"typescript": "^4.6.3"

src/index.ts

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
Copyright 2023 The Matrix.org Foundation C.I.C.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
17+
export type { TranslationStringsObject } from "./types/translations";
18+
19+
export { ModuleApi } from "./ModuleApi";
20+
export { RuntimeModule } from "./RuntimeModule";

src/types/translations.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2022 The Matrix.org Foundation C.I.C.
2+
Copyright 2022 - 2023 The Matrix.org Foundation C.I.C.
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -14,14 +14,16 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17+
import { Translation } from "matrix-web-i18n";
18+
1719
/**
1820
* Translations object mapping an input string to language variants.
1921
* Mirrors custom translations support introduced by the react-sdk
2022
* here: https://github.com/matrix-org/matrix-react-sdk/pull/7886
2123
*/
2224
export type TranslationStringsObject = {
23-
[str: string]: {
24-
[lang: string]: string;
25+
[translationKey: string]: {
26+
[lang: string]: Translation;
2527
};
2628
};
2729

yarn.lock

+163
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@
4646
"@babel/highlight" "^7.22.10"
4747
chalk "^2.4.2"
4848

49+
"@babel/code-frame@^7.22.13":
50+
version "7.22.13"
51+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e"
52+
integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==
53+
dependencies:
54+
"@babel/highlight" "^7.22.13"
55+
chalk "^2.4.2"
56+
4957
"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.8", "@babel/compat-data@^7.17.0", "@babel/compat-data@^7.17.7":
5058
version "7.17.7"
5159
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.7.tgz#078d8b833fbbcc95286613be8c716cef2b519fa2"
@@ -97,6 +105,16 @@
97105
jsesc "^2.5.1"
98106
source-map "^0.5.0"
99107

108+
"@babel/generator@^7.23.0":
109+
version "7.23.0"
110+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420"
111+
integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==
112+
dependencies:
113+
"@babel/types" "^7.23.0"
114+
"@jridgewell/gen-mapping" "^0.3.2"
115+
"@jridgewell/trace-mapping" "^0.3.17"
116+
jsesc "^2.5.1"
117+
100118
"@babel/helper-annotate-as-pure@^7.16.7":
101119
version "7.16.7"
102120
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz#bb2339a7534a9c128e3102024c60760a3a7f3862"
@@ -164,6 +182,11 @@
164182
dependencies:
165183
"@babel/types" "^7.16.7"
166184

185+
"@babel/helper-environment-visitor@^7.22.20":
186+
version "7.22.20"
187+
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
188+
integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
189+
167190
"@babel/helper-explode-assignable-expression@^7.16.7":
168191
version "7.16.7"
169192
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz#12a6d8522fdd834f194e868af6354e8650242b7a"
@@ -180,6 +203,14 @@
180203
"@babel/template" "^7.16.7"
181204
"@babel/types" "^7.16.7"
182205

206+
"@babel/helper-function-name@^7.23.0":
207+
version "7.23.0"
208+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
209+
integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
210+
dependencies:
211+
"@babel/template" "^7.22.15"
212+
"@babel/types" "^7.23.0"
213+
183214
"@babel/helper-get-function-arity@^7.16.7":
184215
version "7.16.7"
185216
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz#ea08ac753117a669f1508ba06ebcc49156387419"
@@ -194,6 +225,13 @@
194225
dependencies:
195226
"@babel/types" "^7.16.7"
196227

228+
"@babel/helper-hoist-variables@^7.22.5":
229+
version "7.22.5"
230+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
231+
integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==
232+
dependencies:
233+
"@babel/types" "^7.22.5"
234+
197235
"@babel/helper-member-expression-to-functions@^7.16.7":
198236
version "7.17.7"
199237
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz#a34013b57d8542a8c4ff8ba3f747c02452a4d8c4"
@@ -275,11 +313,28 @@
275313
dependencies:
276314
"@babel/types" "^7.16.7"
277315

316+
"@babel/helper-split-export-declaration@^7.22.6":
317+
version "7.22.6"
318+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c"
319+
integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==
320+
dependencies:
321+
"@babel/types" "^7.22.5"
322+
323+
"@babel/helper-string-parser@^7.22.5":
324+
version "7.22.5"
325+
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f"
326+
integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==
327+
278328
"@babel/helper-validator-identifier@^7.16.7", "@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.22.5":
279329
version "7.22.5"
280330
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193"
281331
integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==
282332

333+
"@babel/helper-validator-identifier@^7.22.20":
334+
version "7.22.20"
335+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
336+
integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
337+
283338
"@babel/helper-validator-option@^7.16.7":
284339
version "7.16.7"
285340
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz#b203ce62ce5fe153899b617c08957de860de4d23"
@@ -322,11 +377,25 @@
322377
chalk "^2.4.2"
323378
js-tokens "^4.0.0"
324379

380+
"@babel/highlight@^7.22.13":
381+
version "7.22.20"
382+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54"
383+
integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==
384+
dependencies:
385+
"@babel/helper-validator-identifier" "^7.22.20"
386+
chalk "^2.4.2"
387+
js-tokens "^4.0.0"
388+
325389
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.17.3", "@babel/parser@^7.17.8":
326390
version "7.17.8"
327391
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.8.tgz#2817fb9d885dd8132ea0f8eb615a6388cca1c240"
328392
integrity sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==
329393

394+
"@babel/parser@^7.18.5", "@babel/parser@^7.22.15", "@babel/parser@^7.23.0":
395+
version "7.23.0"
396+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719"
397+
integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
398+
330399
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.7":
331400
version "7.16.7"
332401
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.16.7.tgz#4eda6d6c2a0aa79c70fa7b6da67763dfe2141050"
@@ -1043,6 +1112,15 @@
10431112
"@babel/parser" "^7.16.7"
10441113
"@babel/types" "^7.16.7"
10451114

1115+
"@babel/template@^7.22.15":
1116+
version "7.22.15"
1117+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38"
1118+
integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==
1119+
dependencies:
1120+
"@babel/code-frame" "^7.22.13"
1121+
"@babel/parser" "^7.22.15"
1122+
"@babel/types" "^7.22.15"
1123+
10461124
"@babel/traverse@^7.13.0", "@babel/traverse@^7.16.7", "@babel/traverse@^7.16.8", "@babel/traverse@^7.17.3", "@babel/traverse@^7.7.2":
10471125
version "7.17.3"
10481126
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.17.3.tgz#0ae0f15b27d9a92ba1f2263358ea7c4e7db47b57"
@@ -1059,6 +1137,22 @@
10591137
debug "^4.1.0"
10601138
globals "^11.1.0"
10611139

1140+
"@babel/traverse@^7.18.5":
1141+
version "7.23.0"
1142+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.0.tgz#18196ddfbcf4ccea324b7f6d3ada00d8c5a99c53"
1143+
integrity sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==
1144+
dependencies:
1145+
"@babel/code-frame" "^7.22.13"
1146+
"@babel/generator" "^7.23.0"
1147+
"@babel/helper-environment-visitor" "^7.22.20"
1148+
"@babel/helper-function-name" "^7.23.0"
1149+
"@babel/helper-hoist-variables" "^7.22.5"
1150+
"@babel/helper-split-export-declaration" "^7.22.6"
1151+
"@babel/parser" "^7.23.0"
1152+
"@babel/types" "^7.23.0"
1153+
debug "^4.1.0"
1154+
globals "^11.1.0"
1155+
10621156
"@babel/types@^7.0.0", "@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.16.8", "@babel/types@^7.17.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
10631157
version "7.17.0"
10641158
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b"
@@ -1067,6 +1161,15 @@
10671161
"@babel/helper-validator-identifier" "^7.16.7"
10681162
to-fast-properties "^2.0.0"
10691163

1164+
"@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0":
1165+
version "7.23.0"
1166+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb"
1167+
integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==
1168+
dependencies:
1169+
"@babel/helper-string-parser" "^7.22.5"
1170+
"@babel/helper-validator-identifier" "^7.22.20"
1171+
to-fast-properties "^2.0.0"
1172+
10701173
"@bcoe/v8-coverage@^0.2.3":
10711174
version "0.2.3"
10721175
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
@@ -1319,16 +1422,40 @@
13191422
"@types/yargs" "^17.0.8"
13201423
chalk "^4.0.0"
13211424

1425+
"@jridgewell/gen-mapping@^0.3.2":
1426+
version "0.3.3"
1427+
resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
1428+
integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
1429+
dependencies:
1430+
"@jridgewell/set-array" "^1.0.1"
1431+
"@jridgewell/sourcemap-codec" "^1.4.10"
1432+
"@jridgewell/trace-mapping" "^0.3.9"
1433+
13221434
"@jridgewell/resolve-uri@^3.0.3":
13231435
version "3.0.5"
13241436
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz#68eb521368db76d040a6315cdb24bf2483037b9c"
13251437
integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==
13261438

1439+
"@jridgewell/resolve-uri@^3.1.0":
1440+
version "3.1.1"
1441+
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721"
1442+
integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
1443+
1444+
"@jridgewell/set-array@^1.0.1":
1445+
version "1.1.2"
1446+
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
1447+
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
1448+
13271449
"@jridgewell/sourcemap-codec@^1.4.10":
13281450
version "1.4.11"
13291451
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz#771a1d8d744eeb71b6adb35808e1a6c7b9b8c8ec"
13301452
integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==
13311453

1454+
"@jridgewell/sourcemap-codec@^1.4.14":
1455+
version "1.4.15"
1456+
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
1457+
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
1458+
13321459
"@jridgewell/trace-mapping@^0.3.0", "@jridgewell/trace-mapping@^0.3.4":
13331460
version "0.3.4"
13341461
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz#f6a0832dffd5b8a6aaa633b7d9f8e8e94c83a0c3"
@@ -1337,6 +1464,14 @@
13371464
"@jridgewell/resolve-uri" "^3.0.3"
13381465
"@jridgewell/sourcemap-codec" "^1.4.10"
13391466

1467+
"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
1468+
version "0.3.19"
1469+
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811"
1470+
integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==
1471+
dependencies:
1472+
"@jridgewell/resolve-uri" "^3.1.0"
1473+
"@jridgewell/sourcemap-codec" "^1.4.14"
1474+
13401475
"@nicolo-ribaudo/[email protected]":
13411476
version "2.1.8-no-fsevents.3"
13421477
resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz#323d72dd25103d0c4fbdce89dadf574a787b1f9b"
@@ -2759,6 +2894,11 @@ for-each@^0.3.3:
27592894
dependencies:
27602895
is-callable "^1.1.3"
27612896

2897+
foreachasync@^3.0.0:
2898+
version "3.0.0"
2899+
resolved "https://registry.yarnpkg.com/foreachasync/-/foreachasync-3.0.0.tgz#5502987dc8714be3392097f32e0071c9dee07cf6"
2900+
integrity sha512-J+ler7Ta54FwwNcx6wQRDhTIbNeyDcARMkOcguEqnEdtm0jKvN3Li3PDAb2Du3ubJYEWfYL83XMROXdsXAXycw==
2901+
27622902
form-data@^3.0.0:
27632903
version "3.0.1"
27642904
resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
@@ -3972,6 +4112,17 @@ [email protected]:
39724112
dependencies:
39734113
tmpl "1.0.5"
39744114

4115+
matrix-web-i18n@^3.1.1:
4116+
version "3.1.1"
4117+
resolved "https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.1.1.tgz#da851748515b20ca15fa986817bbce2e242b3dd6"
4118+
integrity sha512-BOeOTedtONIqVQUlyHFXpxXkrETWdCoJdToyA+edMU+yGjKOW7bekAd9uAEfkV9jErP5eXw3cHYsKZPpa8ifWg==
4119+
dependencies:
4120+
"@babel/parser" "^7.18.5"
4121+
"@babel/traverse" "^7.18.5"
4122+
lodash "^4.17.21"
4123+
minimist "^1.2.8"
4124+
walk "^2.3.15"
4125+
39754126
merge-stream@^2.0.0:
39764127
version "2.0.0"
39774128
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
@@ -4024,6 +4175,11 @@ minimist@^1.2.0, minimist@^1.2.6:
40244175
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
40254176
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
40264177

4178+
minimist@^1.2.8:
4179+
version "1.2.8"
4180+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
4181+
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
4182+
40274183
40284184
version "2.0.0"
40294185
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
@@ -5055,6 +5211,13 @@ w3c-xmlserializer@^2.0.0:
50555211
dependencies:
50565212
xml-name-validator "^3.0.0"
50575213

5214+
walk@^2.3.15:
5215+
version "2.3.15"
5216+
resolved "https://registry.yarnpkg.com/walk/-/walk-2.3.15.tgz#1b4611e959d656426bc521e2da5db3acecae2424"
5217+
integrity sha512-4eRTBZljBfIISK1Vnt69Gvr2w/wc3U6Vtrw7qiN5iqYJPH7LElcYh/iU4XWhdCy2dZqv1ToMyYlybDylfG/5Vg==
5218+
dependencies:
5219+
foreachasync "^3.0.0"
5220+
50585221
walker@^1.0.7:
50595222
version "1.0.8"
50605223
resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f"

0 commit comments

Comments
 (0)