Skip to content

Commit 0cabfe7

Browse files
authored
docs: upgrade [email protected] (#3636)
1 parent 0addc6a commit 0cabfe7

8 files changed

+67
-159
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ packages/plugin/webpack/test/fixtures/apps/native-modules/package-lock.json
2727
packages/plugin/fuses/test/fixture/app
2828
.links
2929
reports
30+
packages/**/typedoc.json

Diff for: .prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ packages/*/*/index.d.ts
88
packages/*/*/index.ts
99
packages/*/*/README.md
1010
packages/*/*/tsconfig.json
11+
packages/*/*/typedoc.json
1112
packages/api/core/test/fixture/bad_external_forge_config/bad.js
1213
packages/plugin/webpack/test/**/.webpack
1314
.links

Diff for: package.json

+2-7
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
"build": "tsc -b packages",
1212
"build:watch": "yarn build --watch",
1313
"postbuild": "ts-node tools/test-dist",
14-
"docs": "yarn build && yarn docs:generate",
15-
"docs:generate": "yarn docs:plugin && node --max-old-space-size=16384 -r ts-node/register ./tools/gen-docs.ts",
16-
"docs:plugin": "cd ./tools/doc-plugin && yarn build",
14+
"docs": "yarn build && npx typedoc",
1715
"lerna:publish": "lerna publish --force-publish --conventional-commits --no-changelog --exact",
1816
"lint:js": "prettier --check . && eslint .",
1917
"lint:markdown": "electron-markdownlint \"**/*.md\"",
@@ -89,7 +87,6 @@
8987
"devDependencies": {
9088
"@electron/fuses": ">=1.0.0",
9189
"@electron/lint-roller": "1.10.1",
92-
"@knodes/typedoc-plugin-monorepo-readmes": "0.22.5",
9390
"@malept/eslint-config": "^2.0.0",
9491
"@types/chai": "^4.2.12",
9592
"@types/chai-as-promised": "^7.1.2",
@@ -145,9 +142,7 @@
145142
"sinon-chai": "^3.6.0",
146143
"syncpack": "^8.4.11",
147144
"ts-node": "^10.0.0",
148-
"typedoc": "^0.22.15",
149-
"typedoc-plugin-missing-exports": "^1.0.0",
150-
"typedoc-plugin-rename-defaults": "^0.6.4",
145+
"typedoc": "0.25.13",
151146
"typescript": "^4.6.3",
152147
"xvfb-maybe": "^0.2.1",
153148
"yaml-hook": "^1.0.0"

Diff for: tools/gen-docs.ts

-58
This file was deleted.

Diff for: tools/gen-ts-glue.ts

+14
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ function convertMainToSrc(main: string): string {
3232
}
3333

3434
(async () => {
35+
const baseTypedocJson = path.resolve(__dirname, '../typedoc.base.json');
3536
const pkgs = await getPackageInfo();
3637

3738
// Run each package in parallel
@@ -56,6 +57,19 @@ function convertMainToSrc(main: string): string {
5657
// Write the facade entry-point file
5758
const importTarget = './' + srcMain.replace(/\.ts$/, '');
5859
const facadeFilePath = path.resolve(pkg.path, 'index.ts');
60+
const typedocJsonPath = path.resolve(pkg.path, 'typedoc.json');
61+
await fs.writeFile(
62+
typedocJsonPath,
63+
JSON.stringify(
64+
{
65+
$schema: 'https://typedoc.org/schema.json',
66+
extends: [baseTypedocJson],
67+
entryPoints: [srcMain],
68+
},
69+
null,
70+
2
71+
)
72+
);
5973
let facadeFileContents =
6074
'// ⚠️ AUTOGENERATED ⚠️ AUTOGENERATED ⚠️ AUTOGENERATED ⚠️\n' +
6175
'// This file was automatically generated by `tools/gen-ts-glue.ts`. Do not modify directly if you want to keep your changes.\n' +

Diff for: typedoc.base.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://typedoc.org/schema.json",
3+
"excludeInternal": true
4+
}

Diff for: typedoc.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "https://typedoc.org/schema.json",
3+
"entryPointStrategy": "packages",
4+
"entryPoints": ["packages/api/core", "packages/maker/*", "packages/plugin/*", "packages/plugin/*", "packages/publisher/*", "packages/utils/types"]
5+
}

Diff for: yarn.lock

+40-94
Original file line numberDiff line numberDiff line change
@@ -1460,23 +1460,6 @@
14601460
"@jridgewell/resolve-uri" "^3.0.3"
14611461
"@jridgewell/sourcemap-codec" "^1.4.10"
14621462

1463-
1464-
version "0.22.5"
1465-
resolved "https://registry.yarnpkg.com/@knodes/typedoc-plugin-monorepo-readmes/-/typedoc-plugin-monorepo-readmes-0.22.5.tgz#aae62c85ef5bd0040edf9939facafafce6c697af"
1466-
integrity sha512-SJcMSTbCXu3VUrmwaQvebQW0oyLLRqLQDQltRS0QR7RJ64NV0xYaCmFC4jFjAoAX6hXvlmdP9T0cLALNAYhV2Q==
1467-
dependencies:
1468-
"@knodes/typedoc-pluginutils" "~0.22.5"
1469-
find-up "^4.1.0"
1470-
1471-
"@knodes/typedoc-pluginutils@~0.22.5":
1472-
version "0.22.7"
1473-
resolved "https://registry.yarnpkg.com/@knodes/typedoc-pluginutils/-/typedoc-pluginutils-0.22.7.tgz#a158d46f09909a95d7d71b97008ddc90ec5aa777"
1474-
integrity sha512-VAxpQNfyghintegU9Ky3vJLKQBSFXRP3rs6JclHpJloGKKAAGV6WweCDrFvFzZ4a08LkXSpqIMLmmuFjKLELOg==
1475-
dependencies:
1476-
lodash "^4.17.21"
1477-
pkg-up "^3.1.0"
1478-
semver "^7.3.5"
1479-
14801463
"@leichtgewicht/ip-codec@^2.0.1":
14811464
version "2.0.4"
14821465
resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b"
@@ -3731,6 +3714,11 @@ ansi-regex@^6.0.1:
37313714
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a"
37323715
integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==
37333716

3717+
ansi-sequence-parser@^1.1.0:
3718+
version "1.1.1"
3719+
resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz#e0aa1cdcbc8f8bb0b5bca625aac41f5f056973cf"
3720+
integrity sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==
3721+
37343722
ansi-styles@^3.2.1:
37353723
version "3.2.1"
37363724
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
@@ -7277,7 +7265,7 @@ [email protected]:
72777265
once "^1.3.0"
72787266
path-is-absolute "^1.0.0"
72797267

7280-
[email protected], glob@^7.1.4, glob@^7.2.0:
7268+
[email protected], glob@^7.1.4:
72817269
version "7.2.0"
72827270
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
72837271
integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
@@ -8467,10 +8455,10 @@ [email protected], jsonc-parser@~3.2.0:
84678455
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76"
84688456
integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==
84698457

8470-
jsonc-parser@^3.0.0:
8471-
version "3.0.0"
8472-
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.0.0.tgz#abdd785701c7e7eaca8a9ec8cf070ca51a745a22"
8473-
integrity sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==
8458+
jsonc-parser@^3.2.0:
8459+
version "3.2.1"
8460+
resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.1.tgz#031904571ccf929d7670ee8c547545081cb37f1a"
8461+
integrity sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==
84748462

84758463
jsonfile@^4.0.0:
84768464
version "4.0.0"
@@ -9104,10 +9092,10 @@ markdownlint@~0.27.0:
91049092
dependencies:
91059093
markdown-it "13.0.1"
91069094

9107-
marked@^4.0.12:
9108-
version "4.0.14"
9109-
resolved "https://registry.yarnpkg.com/marked/-/marked-4.0.14.tgz#7a3a5fa5c80580bac78c1ed2e3b84d7bd6fc3870"
9110-
integrity sha512-HL5sSPE/LP6U9qKgngIIPTthuxC0jrfxpYMZ3LdGDD3vTnLs59m2Z7r6+LNDR3ToqEQdkKd6YaaEfJhodJmijQ==
9095+
marked@^4.3.0:
9096+
version "4.3.0"
9097+
resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3"
9098+
integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==
91119099

91129100
matcher@^3.0.0:
91139101
version "3.0.0"
@@ -10869,13 +10857,6 @@ pkg-dir@^4.2.0:
1086910857
dependencies:
1087010858
find-up "^4.0.0"
1087110859

10872-
pkg-up@^3.1.0:
10873-
version "3.1.0"
10874-
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
10875-
integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
10876-
dependencies:
10877-
find-up "^3.0.0"
10878-
1087910860
plist@^3.0.0:
1088010861
version "3.0.5"
1088110862
resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.5.tgz#2cbeb52d10e3cdccccf0c11a63a85d830970a987"
@@ -11862,14 +11843,15 @@ shebang-regex@^3.0.0:
1186211843
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1186311844
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1186411845

11865-
shiki@^0.10.1:
11866-
version "0.10.1"
11867-
resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.10.1.tgz#6f9a16205a823b56c072d0f1a0bcd0f2646bef14"
11868-
integrity sha512-VsY7QJVzU51j5o1+DguUd+6vmCmZ5v/6gYu4vyYAhzjuNQU6P/vmSy4uQaOhvje031qQMiW0d2BwgMH52vqMng==
11846+
shiki@^0.14.7:
11847+
version "0.14.7"
11848+
resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.7.tgz#c3c9e1853e9737845f1d2ef81b31bcfb07056d4e"
11849+
integrity sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==
1186911850
dependencies:
11870-
jsonc-parser "^3.0.0"
11871-
vscode-oniguruma "^1.6.1"
11872-
vscode-textmate "5.2.0"
11851+
ansi-sequence-parser "^1.1.0"
11852+
jsonc-parser "^3.2.0"
11853+
vscode-oniguruma "^1.7.0"
11854+
vscode-textmate "^8.0.0"
1187311855

1187411856
side-channel@^1.0.4:
1187511857
version "1.0.4"
@@ -12162,16 +12144,7 @@ string-argv@^0.3.1:
1216212144
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
1216312145
integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
1216412146

12165-
"string-width-cjs@npm:string-width@^4.2.0":
12166-
version "4.2.3"
12167-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
12168-
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
12169-
dependencies:
12170-
emoji-regex "^8.0.0"
12171-
is-fullwidth-code-point "^3.0.0"
12172-
strip-ansi "^6.0.1"
12173-
12174-
"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
12147+
"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
1217512148
version "4.2.3"
1217612149
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
1217712150
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -12279,7 +12252,7 @@ string_decoder@~1.1.1:
1227912252
dependencies:
1228012253
safe-buffer "~5.1.0"
1228112254

12282-
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
12255+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
1228312256
version "6.0.1"
1228412257
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1228512258
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -12300,13 +12273,6 @@ strip-ansi@^5.1.0:
1230012273
dependencies:
1230112274
ansi-regex "^4.1.0"
1230212275

12303-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
12304-
version "6.0.1"
12305-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
12306-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
12307-
dependencies:
12308-
ansi-regex "^5.0.1"
12309-
1231012276
strip-ansi@^7.0.1:
1231112277
version "7.0.1"
1231212278
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2"
@@ -12833,26 +12799,15 @@ typedarray@^0.0.6:
1283312799
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1283412800
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
1283512801

12836-
typedoc-plugin-missing-exports@^1.0.0:
12837-
version "1.0.0"
12838-
resolved "https://registry.yarnpkg.com/typedoc-plugin-missing-exports/-/typedoc-plugin-missing-exports-1.0.0.tgz#7212a2cfaba7b48264df4b4110f3a5684b5c49a1"
12839-
integrity sha512-7s6znXnuAj1eD9KYPyzVzR1lBF5nwAY8IKccP5sdoO9crG4lpd16RoFpLsh2PccJM+I2NASpr0+/NMka6ThwVA==
12840-
12841-
typedoc-plugin-rename-defaults@^0.6.4:
12842-
version "0.6.4"
12843-
resolved "https://registry.yarnpkg.com/typedoc-plugin-rename-defaults/-/typedoc-plugin-rename-defaults-0.6.4.tgz#8019bbfdbb4616682a0af8ecf1e8f42d053d4a40"
12844-
integrity sha512-0rAeNttAfu6ixbi1yu6d+DqNZN8SfRivj2QbnZ4zVa+5HcCPcmQrlR6WHjNzdDfpkGytiiqPTtRD6pAfW/yACg==
12845-
12846-
typedoc@^0.22.15:
12847-
version "0.22.15"
12848-
resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.22.15.tgz#c6ad7ed9d017dc2c3a06c9189cb392bd8e2d8c3f"
12849-
integrity sha512-CMd1lrqQbFvbx6S9G6fL4HKp3GoIuhujJReWqlIvSb2T26vGai+8Os3Mde7Pn832pXYemd9BMuuYWhFpL5st0Q==
12802+
12803+
version "0.25.13"
12804+
resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.25.13.tgz#9a98819e3b2d155a6d78589b46fa4c03768f0922"
12805+
integrity sha512-pQqiwiJ+Z4pigfOnnysObszLiU3mVLWAExSPf+Mu06G/qsc3wzbuM56SZQvONhHLncLUhYzOVkjFFpFfL5AzhQ==
1285012806
dependencies:
12851-
glob "^7.2.0"
1285212807
lunr "^2.3.9"
12853-
marked "^4.0.12"
12854-
minimatch "^5.0.1"
12855-
shiki "^0.10.1"
12808+
marked "^4.3.0"
12809+
minimatch "^9.0.3"
12810+
shiki "^0.14.7"
1285612811

1285712812
"typescript@^3 || ^4":
1285812813
version "4.8.4"
@@ -13137,15 +13092,15 @@ vscode-languageserver@^8.1.0:
1313713092
dependencies:
1313813093
vscode-languageserver-protocol "3.17.3"
1313913094

13140-
vscode-oniguruma@^1.6.1:
13141-
version "1.6.1"
13142-
resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.6.1.tgz#2bf4dfcfe3dd2e56eb549a3068c8ee39e6c30ce5"
13143-
integrity sha512-vc4WhSIaVpgJ0jJIejjYxPvURJavX6QG41vu0mGhqywMkQqulezEqEQ3cO3gc8GvcOpX6ycmKGqRoROEMBNXTQ==
13095+
vscode-oniguruma@^1.7.0:
13096+
version "1.7.0"
13097+
resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b"
13098+
integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==
1314413099

13145-
vscode-textmate@5.2.0:
13146-
version "5.2.0"
13147-
resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz#01f01760a391e8222fe4f33fbccbd1ad71aed74e"
13148-
integrity sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ==
13100+
vscode-textmate@^8.0.0:
13101+
version "8.0.0"
13102+
resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d"
13103+
integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
1314913104

1315013105
vscode-uri@^3.0.3, vscode-uri@^3.0.7:
1315113106
version "3.0.7"
@@ -13392,7 +13347,7 @@ [email protected]:
1339213347
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b"
1339313348
integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A==
1339413349

13395-
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
13350+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
1339613351
version "7.0.0"
1339713352
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1339813353
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -13410,15 +13365,6 @@ wrap-ansi@^6.2.0:
1341013365
string-width "^4.1.0"
1341113366
strip-ansi "^6.0.0"
1341213367

13413-
wrap-ansi@^7.0.0:
13414-
version "7.0.0"
13415-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
13416-
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
13417-
dependencies:
13418-
ansi-styles "^4.0.0"
13419-
string-width "^4.1.0"
13420-
strip-ansi "^6.0.0"
13421-
1342213368
wrap-ansi@^8.0.1, wrap-ansi@^8.1.0:
1342313369
version "8.1.0"
1342413370
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"

0 commit comments

Comments
 (0)