Skip to content

Commit 59ef250

Browse files
authored
fix(deps): bump-sdr-for-new-types (#1137)
* fix(deps): bump sdr * test: testkit type fix (only use deploySuccess)
1 parent a0bdcbb commit 59ef250

File tree

8 files changed

+94
-74
lines changed

8 files changed

+94
-74
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@salesforce/kit": "^3.2.1",
1212
"@salesforce/plugin-info": "^3.3.28",
1313
"@salesforce/sf-plugins-core": "^11.3.2",
14-
"@salesforce/source-deploy-retrieve": "^12.4.0",
14+
"@salesforce/source-deploy-retrieve": "^12.5.1",
1515
"@salesforce/source-tracking": "^7.1.7",
1616
"@salesforce/ts-types": "^2.0.12",
1717
"ansis": "^3.3.2"
@@ -22,7 +22,7 @@
2222
"@salesforce/dev-scripts": "^10.2.9",
2323
"@salesforce/plugin-command-reference": "^3.1.16",
2424
"@salesforce/schemas": "^1.9.0",
25-
"@salesforce/source-testkit": "^2.2.39",
25+
"@salesforce/source-testkit": "^2.2.57",
2626
"@salesforce/ts-sinon": "^1.4.24",
2727
"cross-env": "^7.0.3",
2828
"eslint-plugin-sf-plugin": "^1.20.4",

test/commands/deploy/metadata/report.nut.ts

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { fileURLToPath } from 'node:url';
1111
import { SourceTestkit } from '@salesforce/source-testkit';
1212
import { assert, isObject } from '@salesforce/ts-types';
1313
import { expect } from 'chai';
14-
import { DeployResultJson } from '../../../../src/utils/types.js';
14+
import { DeployResultJson, isSdrSuccess } from '../../../../src/utils/types.js';
1515

1616
describe('[project deploy report] NUTs with source-dir', () => {
1717
let testkit: SourceTestkit;
@@ -44,7 +44,11 @@ describe('[project deploy report] NUTs with source-dir', () => {
4444
exitCode: 0,
4545
});
4646
assert(isObject(deploy));
47-
await testkit.expect.filesToBeDeployedViaResult(['force-app/**/*'], ['force-app/test/**/*'], deploy.result.files);
47+
await testkit.expect.filesToBeDeployedViaResult(
48+
['force-app/**/*'],
49+
['force-app/test/**/*'],
50+
deploy.result.files.filter(isSdrSuccess)
51+
);
4852
});
4953
});
5054

@@ -61,7 +65,11 @@ describe('[project deploy report] NUTs with source-dir', () => {
6165
exitCode: 0,
6266
});
6367
assert(isObject(deploy));
64-
await testkit.expect.filesToBeDeployedViaResult(['force-app/**/*'], ['force-app/test/**/*'], deploy.result.files);
68+
await testkit.expect.filesToBeDeployedViaResult(
69+
['force-app/**/*'],
70+
['force-app/test/**/*'],
71+
deploy.result.files.filter(isSdrSuccess)
72+
);
6573
});
6674

6775
it('should report from specified target-org and job-id without deploy cache', async () => {
@@ -106,7 +114,11 @@ describe('[project deploy report] NUTs with source-dir', () => {
106114
expect(existsSync(join(testkit.projectDir, 'test-output-override', 'junit', 'junit.xml'))).to.be.true;
107115
expect(existsSync(join(testkit.projectDir, 'test-output'))).to.be.false;
108116
assert(isObject(deploy));
109-
await testkit.expect.filesToBeDeployedViaResult(['force-app/**/*'], ['force-app/test/**/*'], deploy.result.files);
117+
await testkit.expect.filesToBeDeployedViaResult(
118+
['force-app/**/*'],
119+
['force-app/test/**/*'],
120+
deploy.result.files.filter(isSdrSuccess)
121+
);
110122
});
111123
});
112124
});

test/commands/deploy/metadata/resume.nut.ts

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { strict as assert } from 'node:assert';
1212
import { SourceTestkit } from '@salesforce/source-testkit';
1313
import { expect } from 'chai';
1414
import { RequestStatus } from '@salesforce/source-deploy-retrieve';
15-
import { DeployResultJson } from '../../../../src/utils/types.js';
15+
import { DeployResultJson, isSdrSuccess } from '../../../../src/utils/types.js';
1616
import { CachedOptions } from '../../../../src/utils/deploy.js';
1717

1818
function readDeployCache(projectDir: string): Record<string, CachedOptions> {
@@ -54,7 +54,11 @@ describe('[project deploy resume] NUTs', () => {
5454
exitCode: 0,
5555
});
5656
assert(deploy);
57-
await testkit.expect.filesToBeDeployedViaResult(['force-app/**/*'], ['force-app/test/**/*'], deploy.result.files);
57+
await testkit.expect.filesToBeDeployedViaResult(
58+
['force-app/**/*'],
59+
['force-app/test/**/*'],
60+
deploy.result.files.filter(isSdrSuccess)
61+
);
5862

5963
const cacheAfter = readDeployCache(testkit.projectDir);
6064

@@ -87,7 +91,11 @@ describe('[project deploy resume] NUTs', () => {
8791
});
8892
assert(deploy);
8993

90-
await testkit.expect.filesToBeDeployedViaResult(['force-app/**/*'], ['force-app/test/**/*'], deploy.result.files);
94+
await testkit.expect.filesToBeDeployedViaResult(
95+
['force-app/**/*'],
96+
['force-app/test/**/*'],
97+
deploy.result.files.filter(isSdrSuccess)
98+
);
9199
const cacheAfter = readDeployCache(testkit.projectDir);
92100
expect(cacheAfter).to.have.property(deployId);
93101
expect(cacheAfter[deployId]).have.property('status');
@@ -122,7 +130,11 @@ describe('[project deploy resume] NUTs', () => {
122130
});
123131
assert(deploy);
124132

125-
await testkit.expect.filesToBeDeployedViaResult(['force-app/**/*'], ['force-app/test/**/*'], deploy.result.files);
133+
await testkit.expect.filesToBeDeployedViaResult(
134+
['force-app/**/*'],
135+
['force-app/test/**/*'],
136+
deploy.result.files.filter(isSdrSuccess)
137+
);
126138

127139
const cacheAfter = readDeployCache(testkit.projectDir);
128140
expect(cacheAfter).to.have.property(first.result.id);

test/commands/deploy/metadata/validate.nut.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { SourceTestkit } from '@salesforce/source-testkit';
1111
import { isObject } from '@salesforce/ts-types';
1212
import { assert, expect } from 'chai';
1313
import { execCmd } from '@salesforce/cli-plugins-testkit';
14-
import { DeployResultJson } from '../../../../src/utils/types.js';
14+
import { DeployResultJson, isSdrSuccess } from '../../../../src/utils/types.js';
1515

1616
describe('deploy metadata validate NUTs', () => {
1717
let testkit: SourceTestkit;
@@ -35,7 +35,11 @@ describe('deploy metadata validate NUTs', () => {
3535
exitCode: 0,
3636
});
3737
assert(isObject(deploy));
38-
await testkit.expect.filesToBeDeployedViaResult(['force-app/**/*'], ['force-app/test/**/*'], deploy.result.files);
38+
await testkit.expect.filesToBeDeployedViaResult(
39+
['force-app/**/*'],
40+
['force-app/test/**/*'],
41+
deploy.result.files.filter(isSdrSuccess)
42+
);
3943
});
4044
});
4145

test/nuts/seeds/deploy.metadata.manifest.seed.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { fileURLToPath } from 'node:url';
1010
import { SourceTestkit } from '@salesforce/source-testkit';
1111
import { assert } from 'chai';
1212
import { TEST_REPOS_MAP } from '../testMatrix.js';
13-
import { DeployResultJson } from '../../../src/utils/types.js';
13+
import { DeployResultJson, isSdrSuccess } from '../../../src/utils/types.js';
1414

1515
// DO NOT TOUCH. generateNuts.ts will insert these values
1616
const REPO = TEST_REPOS_MAP.get('%REPO_URL%');
@@ -52,7 +52,11 @@ context('deploy metadata --manifest NUTs [name: %REPO_NAME%]', () => {
5252

5353
const deploy = await testkit.deploy<DeployResultJson>({ args: `--manifest ${packageXml}` });
5454
assert(deploy);
55-
await testkit.expect.filesToBeDeployedViaResult(testCase.toVerify, testCase.toIgnore, deploy.result.files);
55+
await testkit.expect.filesToBeDeployedViaResult(
56+
testCase.toVerify,
57+
testCase.toIgnore,
58+
deploy.result.files.filter(isSdrSuccess)
59+
);
5660
});
5761
}
5862

test/nuts/seeds/deploy.metadata.metadata.seed.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { fileURLToPath } from 'node:url';
99
import { SourceTestkit } from '@salesforce/source-testkit';
1010
import { assert } from 'chai';
1111
import { TEST_REPOS_MAP } from '../testMatrix.js';
12-
import { DeployResultJson } from '../../../src/utils/types.js';
12+
import { DeployResultJson, isSdrSuccess } from '../../../src/utils/types.js';
1313

1414
// DO NOT TOUCH. generateNuts.ts will insert these values
1515
const REPO = TEST_REPOS_MAP.get('%REPO_URL%');
@@ -46,7 +46,11 @@ context('deploy metadata --metadata NUTs [name: %REPO_NAME%]', () => {
4646
const args = testCase.toDeploy.map((t) => `--metadata ${t}`).join(' ');
4747
const deploy = await testkit.deploy<DeployResultJson>({ args });
4848
assert(deploy);
49-
await testkit.expect.filesToBeDeployedViaResult(testCase.toVerify, testCase.toIgnore, deploy.result.files);
49+
await testkit.expect.filesToBeDeployedViaResult(
50+
testCase.toVerify,
51+
testCase.toIgnore,
52+
deploy.result.files.filter(isSdrSuccess)
53+
);
5054
});
5155
}
5256

test/nuts/seeds/deploy.metadata.source-dir.seed.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { fileURLToPath } from 'node:url';
1010
import { assert } from 'chai';
1111
import { SourceTestkit } from '@salesforce/source-testkit';
1212
import { TEST_REPOS_MAP } from '../testMatrix.js';
13-
import { DeployResultJson } from '../../../src/utils/types.js';
13+
import { DeployResultJson, isSdrSuccess } from '../../../src/utils/types.js';
1414

1515
// DO NOT TOUCH. generateNuts.ts will insert these values
1616
const REPO = TEST_REPOS_MAP.get('%REPO_URL%');
@@ -41,7 +41,11 @@ context('deploy metadata --source-dir NUTs [name: %REPO_NAME%]', () => {
4141
const args = testCase.toDeploy.map((t) => `--source-dir ${path.normalize(t)}`).join(' ');
4242
const deploy = await testkit.deploy<DeployResultJson>({ args });
4343
assert(deploy);
44-
await testkit.expect.filesToBeDeployedViaResult(testCase.toVerify, testCase.toIgnore, deploy.result.files);
44+
await testkit.expect.filesToBeDeployedViaResult(
45+
testCase.toVerify,
46+
testCase.toIgnore,
47+
deploy.result.files.filter(isSdrSuccess)
48+
);
4549
});
4650
}
4751

yarn.lock

Lines changed: 36 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1584,7 +1584,7 @@
15841584
istanbul-lib-report "^3.0.1"
15851585
istanbul-reports "^3.1.7"
15861586

1587-
"@salesforce/cli-plugins-testkit@^5.3.18", "@salesforce/cli-plugins-testkit@^5.3.25":
1587+
"@salesforce/cli-plugins-testkit@^5.3.25":
15881588
version "5.3.25"
15891589
resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.25.tgz#a3e081d1e8bce8660d602fdf04851986c89f18a1"
15901590
integrity sha512-wwFnd7EuEVxc7IRCvOtJO65iEbjYWrIHUdkxf7bZkgrS9ZfjFNDyua/XthT+gWpVfIZiHxEjqYBdHzMNWZQkbg==
@@ -1600,7 +1600,7 @@
16001600
strip-ansi "6.0.1"
16011601
ts-retry-promise "^0.8.1"
16021602

1603-
"@salesforce/core@^8.0.3", "@salesforce/core@^8.2.7", "@salesforce/core@^8.2.8", "@salesforce/core@^8.3.0", "@salesforce/core@^8.4.0":
1603+
"@salesforce/core@^8.2.7", "@salesforce/core@^8.2.8", "@salesforce/core@^8.3.0", "@salesforce/core@^8.4.0":
16041604
version "8.4.0"
16051605
resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-8.4.0.tgz#d2ddfe07994c42b1e917e581e9cf47ad27b97a93"
16061606
integrity sha512-P+n0+Sp+v6voLTShW2E5sdF7gCUxEXJjNcc9Jtto0ZMyQesmQJ6WGpWmAuRoi+BVYc8OPSlEffndaYDAo/u73g==
@@ -1728,10 +1728,10 @@
17281728
string-width "^7.2.0"
17291729
terminal-link "^3.0.0"
17301730

1731-
"@salesforce/source-deploy-retrieve@^12.1.5", "@salesforce/source-deploy-retrieve@^12.4.0":
1732-
version "12.4.0"
1733-
resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.4.0.tgz#7e5a72b1d7b559eaa7f6f333ee212380b6316542"
1734-
integrity sha512-gvTEjLPbNRt62GEKvejt/f1TtG6Zx8JPd/5BYjnXyEJu8BeOy5kL4zJm9GD3ZiTzBnPGHLzfVL09JjWfNBbo0A==
1731+
"@salesforce/source-deploy-retrieve@^12.4.0", "@salesforce/source-deploy-retrieve@^12.5.1":
1732+
version "12.5.1"
1733+
resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.5.1.tgz#55e915201b2c9320b9662b2c8500a191c8770ecf"
1734+
integrity sha512-jakBWFSIb8oZlUAf0QKHXaeFA/KuTQZwaKZVevdwaiuy43lJHzVVrSRfcNv/kjXxmg0oq5TAI8vUo2CC5Hq04A==
17351735
dependencies:
17361736
"@salesforce/core" "^8.4.0"
17371737
"@salesforce/kit" "^3.2.1"
@@ -1740,24 +1740,24 @@
17401740
fast-xml-parser "^4.4.1"
17411741
got "^11.8.6"
17421742
graceful-fs "^4.2.11"
1743-
ignore "^5.3.1"
1743+
ignore "^5.3.2"
17441744
jszip "^3.10.1"
17451745
mime "2.6.0"
17461746
minimatch "^9.0.5"
17471747
proxy-agent "^6.4.0"
17481748

1749-
"@salesforce/source-testkit@^2.2.39":
1750-
version "2.2.39"
1751-
resolved "https://registry.yarnpkg.com/@salesforce/source-testkit/-/source-testkit-2.2.39.tgz#633dd43fd992fddba87a74209f0eb0c87b750658"
1752-
integrity sha512-mWt9hb7DAT64vPknikMTGWnna/+JWf9u31ER1U6bMSnPjz4X69H1GyyD/E8bHOFl8piurjT7pB+6Rwl4JGPDjA==
1749+
"@salesforce/source-testkit@^2.2.57":
1750+
version "2.2.57"
1751+
resolved "https://registry.yarnpkg.com/@salesforce/source-testkit/-/source-testkit-2.2.57.tgz#e71f99f0abc3fab62458c0e77ba6fb60776c9edf"
1752+
integrity sha512-uVtsXC35eejxsrWLXTk+OErJZlXCs9/AvzZPZwtxA4/EKrOftR9vnOIX6/JF8H83XJiyzpMxUl/0x949vYVdmw==
17531753
dependencies:
1754-
"@salesforce/cli-plugins-testkit" "^5.3.18"
1755-
"@salesforce/core" "^8.0.3"
1756-
"@salesforce/kit" "^3.1.6"
1757-
"@salesforce/source-deploy-retrieve" "^12.1.5"
1758-
"@salesforce/ts-types" "^2.0.10"
1759-
chai "^4.4.1"
1760-
debug "^4.3.5"
1754+
"@salesforce/cli-plugins-testkit" "^5.3.25"
1755+
"@salesforce/core" "^8.4.0"
1756+
"@salesforce/kit" "^3.2.1"
1757+
"@salesforce/source-deploy-retrieve" "^12.4.0"
1758+
"@salesforce/ts-types" "^2.0.12"
1759+
chai "^4.5.0"
1760+
debug "^4.3.6"
17611761
fast-glob "^3.3.2"
17621762
shelljs "^0.8.4"
17631763
sinon "^10.0.0"
@@ -3278,18 +3278,18 @@ cardinal@^2.1.1:
32783278
ansicolors "~0.3.2"
32793279
redeyed "~2.1.0"
32803280

3281-
chai@^4.3.10, chai@^4.4.1:
3282-
version "4.4.1"
3283-
resolved "https://registry.yarnpkg.com/chai/-/chai-4.4.1.tgz#3603fa6eba35425b0f2ac91a009fe924106e50d1"
3284-
integrity sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==
3281+
chai@^4.3.10, chai@^4.5.0:
3282+
version "4.5.0"
3283+
resolved "https://registry.yarnpkg.com/chai/-/chai-4.5.0.tgz#707e49923afdd9b13a8b0b47d33d732d13812fd8"
3284+
integrity sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==
32853285
dependencies:
32863286
assertion-error "^1.1.0"
32873287
check-error "^1.0.3"
32883288
deep-eql "^4.1.3"
32893289
get-func-name "^2.0.2"
32903290
loupe "^2.3.6"
32913291
pathval "^1.1.1"
3292-
type-detect "^4.0.8"
3292+
type-detect "^4.1.0"
32933293

32943294
chalk@^2.4.2:
32953295
version "2.4.2"
@@ -5087,10 +5087,10 @@ ieee754@^1.2.1:
50875087
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
50885088
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
50895089

5090-
ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.0, ignore@^5.3.1:
5091-
version "5.3.1"
5092-
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
5093-
integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
5090+
ignore@^5.1.4, ignore@^5.2.0, ignore@^5.2.4, ignore@^5.3.0, ignore@^5.3.2:
5091+
version "5.3.2"
5092+
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
5093+
integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
50945094

50955095
immediate@~3.0.5:
50965096
version "3.0.6"
@@ -7576,16 +7576,7 @@ [email protected]:
75767576
dependencies:
75777577
escodegen "^1.8.1"
75787578

7579-
"string-width-cjs@npm:string-width@^4.2.0":
7580-
version "4.2.3"
7581-
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
7582-
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
7583-
dependencies:
7584-
emoji-regex "^8.0.0"
7585-
is-fullwidth-code-point "^3.0.0"
7586-
strip-ansi "^6.0.1"
7587-
7588-
string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
7579+
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
75897580
version "4.2.3"
75907581
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
75917582
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -7654,14 +7645,7 @@ string_decoder@~1.1.1:
76547645
dependencies:
76557646
safe-buffer "~5.1.0"
76567647

7657-
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
7658-
version "6.0.1"
7659-
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
7660-
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
7661-
dependencies:
7662-
ansi-regex "^5.0.1"
7663-
7664-
[email protected], strip-ansi@^6.0.0, strip-ansi@^6.0.1:
7648+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", [email protected], strip-ansi@^6.0.0, strip-ansi@^6.0.1:
76657649
version "6.0.1"
76667650
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
76677651
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -7907,11 +7891,16 @@ type-check@~0.3.2:
79077891
dependencies:
79087892
prelude-ls "~1.1.2"
79097893

7910-
[email protected], type-detect@^4.0.0, type-detect@^4.0.8:
7894+
79117895
version "4.0.8"
79127896
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
79137897
integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
79147898

7899+
type-detect@^4.0.0, type-detect@^4.0.8, type-detect@^4.1.0:
7900+
version "4.1.0"
7901+
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.1.0.tgz#deb2453e8f08dcae7ae98c626b13dddb0155906c"
7902+
integrity sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==
7903+
79157904
type-fest@^0.18.0:
79167905
version "0.18.1"
79177906
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f"
@@ -8238,7 +8227,7 @@ workerpool@^6.5.1:
82388227
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544"
82398228
integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==
82408229

8241-
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
8230+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
82428231
version "7.0.0"
82438232
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
82448233
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -8256,15 +8245,6 @@ wrap-ansi@^6.2.0:
82568245
string-width "^4.1.0"
82578246
strip-ansi "^6.0.0"
82588247

8259-
wrap-ansi@^7.0.0:
8260-
version "7.0.0"
8261-
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
8262-
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
8263-
dependencies:
8264-
ansi-styles "^4.0.0"
8265-
string-width "^4.1.0"
8266-
strip-ansi "^6.0.0"
8267-
82688248
wrap-ansi@^8.1.0:
82698249
version "8.1.0"
82708250
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"

0 commit comments

Comments
 (0)