vitest 3.0.0-beta.3 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -315
- package/config.d.ts +2 -0
- package/dist/browser.d.ts +3 -3
- package/dist/browser.js +1 -1
- package/dist/chunks/{base.CQ2VEtuH.js → base.CUDzyU2J.js} +2 -2
- package/dist/chunks/{cac.e7qW4xLT.js → cac.DZC9WjGM.js} +8 -8
- package/dist/chunks/{cli-api.CWDlED-m.js → cli-api.CmJw5Cd_.js} +920 -84
- package/dist/chunks/{config.BTPBhmK5.d.ts → config.BRtC-JeT.d.ts} +6 -0
- package/dist/chunks/{console.BYGVloWk.js → console.CN7AiMGV.js} +16 -7
- package/dist/chunks/{creator.Ot9GlSGw.js → creator.DztqrnyH.js} +1 -1
- package/dist/chunks/{execute.2pr0rHgK.js → execute.BMOaRArH.js} +27 -16
- package/dist/chunks/global.CnI8_G5V.d.ts +133 -0
- package/dist/chunks/{globals.BFncSRNA.js → globals.C5RQxaV3.js} +2 -2
- package/dist/chunks/{index.CkWmZCXU.js → index.BQbxGbG9.js} +1 -1
- package/dist/chunks/{index.BBoOXW-l.js → index.CUcwvygK.js} +5 -5
- package/dist/chunks/{index.DQboAxJm.js → index.D9C26wCk.js} +1 -0
- package/dist/chunks/index.TKSL1HjN.js +2460 -0
- package/dist/chunks/{reporters.DCiyjXOg.d.ts → reporters.Y8BYiXBN.d.ts} +412 -386
- package/dist/chunks/{resolveConfig.C1d7TK-U.js → resolveConfig.CSLLD33d.js} +140 -55
- package/dist/chunks/{rpc.C3q9uwRX.js → rpc.TVf73xOu.js} +0 -1
- package/dist/chunks/{runBaseTests.qNWRkgHj.js → runBaseTests.C0T_TQwH.js} +9 -7
- package/dist/chunks/{setup-common.Cp_bu5q3.js → setup-common.D0zLenuv.js} +1 -1
- package/dist/chunks/{RandomSequencer.C6x84bNN.js → typechecker.BJMkWMXo.js} +84 -108
- package/dist/chunks/{utils.Coei4Wlj.js → utils.DJWL04yX.js} +9 -20
- package/dist/chunks/{vi.S4Fq8wSo.js → vi.Da_PT3Vw.js} +554 -272
- package/dist/chunks/{vite.CRSMFy31.d.ts → vite.CQ0dHgkN.d.ts} +1 -1
- package/dist/chunks/{vm.DGhTouO3.js → vm.DrFVeTXo.js} +4 -4
- package/dist/chunks/{worker.R-PA7DpW.d.ts → worker.B1y96qmv.d.ts} +1 -1
- package/dist/chunks/{worker.XbtCXEXv.d.ts → worker.CIpff8Eg.d.ts} +3 -5
- package/dist/cli.js +1 -1
- package/dist/config.d.ts +4 -4
- package/dist/coverage.d.ts +2 -2
- package/dist/coverage.js +5 -4
- package/dist/execute.d.ts +3 -3
- package/dist/execute.js +1 -1
- package/dist/index.d.ts +18 -119
- package/dist/index.js +2 -2
- package/dist/node.d.ts +12 -9
- package/dist/node.js +25 -24
- package/dist/reporters.d.ts +2 -2
- package/dist/reporters.js +4 -10
- package/dist/runners.d.ts +2 -1
- package/dist/runners.js +9 -16
- package/dist/worker.js +1 -1
- package/dist/workers/forks.js +2 -2
- package/dist/workers/runVmTests.js +8 -6
- package/dist/workers/threads.js +2 -2
- package/dist/workers/vmForks.js +3 -3
- package/dist/workers/vmThreads.js +3 -3
- package/dist/workers.d.ts +3 -3
- package/dist/workers.js +5 -5
- package/package.json +17 -19
- package/dist/chunks/index.CzkCSFCy.js +0 -5455
- package/dist/chunks/types.BOjykUpq.d.ts +0 -27
package/dist/runners.js
CHANGED
|
@@ -4,8 +4,8 @@ import { a as getBenchOptions, g as getBenchFn } from './chunks/benchmark.Cdu9hj
|
|
|
4
4
|
import { g as getWorkerState } from './chunks/utils.C8RiOc4B.js';
|
|
5
5
|
import { setState, GLOBAL_EXPECT, getState } from '@vitest/expect';
|
|
6
6
|
import { getTests, getNames, getTestName } from '@vitest/runner/utils';
|
|
7
|
-
import { g as getSnapshotClient, i as inject, c as createExpect, v as vi } from './chunks/vi.
|
|
8
|
-
import { r as rpc } from './chunks/rpc.
|
|
7
|
+
import { g as getSnapshotClient, i as inject, c as createExpect, v as vi } from './chunks/vi.Da_PT3Vw.js';
|
|
8
|
+
import { r as rpc } from './chunks/rpc.TVf73xOu.js';
|
|
9
9
|
import 'chai';
|
|
10
10
|
import './chunks/_commonjsHelpers.BFTU3MAI.js';
|
|
11
11
|
import '@vitest/snapshot';
|
|
@@ -49,7 +49,7 @@ async function runBenchmarkSuite(suite, runner) {
|
|
|
49
49
|
startTime: start,
|
|
50
50
|
benchmark: createBenchmarkResult(suite.name)
|
|
51
51
|
};
|
|
52
|
-
updateTask$1(suite);
|
|
52
|
+
updateTask$1("suite-prepare", suite);
|
|
53
53
|
const addBenchTaskListener = (task, benchmark) => {
|
|
54
54
|
task.addEventListener(
|
|
55
55
|
"complete",
|
|
@@ -57,6 +57,7 @@ async function runBenchmarkSuite(suite, runner) {
|
|
|
57
57
|
const task2 = e.task;
|
|
58
58
|
const taskRes = task2.result;
|
|
59
59
|
const result = benchmark.result.benchmark;
|
|
60
|
+
benchmark.result.state = "pass";
|
|
60
61
|
Object.assign(result, taskRes);
|
|
61
62
|
const samples = result.samples;
|
|
62
63
|
result.sampleCount = samples.length;
|
|
@@ -64,7 +65,7 @@ async function runBenchmarkSuite(suite, runner) {
|
|
|
64
65
|
if (!runner.config.benchmark?.includeSamples) {
|
|
65
66
|
result.samples.length = 0;
|
|
66
67
|
}
|
|
67
|
-
updateTask$1(benchmark);
|
|
68
|
+
updateTask$1("test-finished", benchmark);
|
|
68
69
|
},
|
|
69
70
|
{
|
|
70
71
|
once: true
|
|
@@ -93,12 +94,12 @@ async function runBenchmarkSuite(suite, runner) {
|
|
|
93
94
|
const task = new Task(benchmarkInstance, benchmark.name, benchmarkFn);
|
|
94
95
|
benchmarkTasks.set(benchmark, task);
|
|
95
96
|
addBenchTaskListener(task, benchmark);
|
|
96
|
-
updateTask$1(benchmark);
|
|
97
97
|
});
|
|
98
98
|
const { setTimeout } = getSafeTimers();
|
|
99
99
|
const tasks = [];
|
|
100
100
|
for (const benchmark of benchmarkGroup) {
|
|
101
101
|
const task = benchmarkTasks.get(benchmark);
|
|
102
|
+
updateTask$1("test-prepare", benchmark);
|
|
102
103
|
await task.warmup();
|
|
103
104
|
tasks.push([
|
|
104
105
|
await new Promise(
|
|
@@ -111,20 +112,12 @@ async function runBenchmarkSuite(suite, runner) {
|
|
|
111
112
|
}
|
|
112
113
|
suite.result.duration = performance.now() - start;
|
|
113
114
|
suite.result.state = "pass";
|
|
114
|
-
|
|
115
|
-
benchmark.result.state = "pass";
|
|
116
|
-
if (benchmark) {
|
|
117
|
-
const result = benchmark.result.benchmark;
|
|
118
|
-
result.rank = Number(idx) + 1;
|
|
119
|
-
updateTask$1(benchmark);
|
|
120
|
-
}
|
|
121
|
-
});
|
|
122
|
-
updateTask$1(suite);
|
|
115
|
+
updateTask$1("suite-finished", suite);
|
|
123
116
|
defer.resolve(null);
|
|
124
117
|
await defer;
|
|
125
118
|
}
|
|
126
|
-
function updateTask$1(task) {
|
|
127
|
-
updateTask(task, runner);
|
|
119
|
+
function updateTask$1(event, task) {
|
|
120
|
+
updateTask(event, task, runner);
|
|
128
121
|
}
|
|
129
122
|
}
|
|
130
123
|
class NodeBenchmarkRunner {
|
package/dist/worker.js
CHANGED
|
@@ -6,7 +6,7 @@ import { readFileSync } from 'node:fs';
|
|
|
6
6
|
import { resolve, normalize } from 'pathe';
|
|
7
7
|
import { e as environments } from './chunks/index.K90BXFOx.js';
|
|
8
8
|
import { s as setupInspect } from './chunks/inspector.DKLceBVD.js';
|
|
9
|
-
import { c as createRuntimeRpc, a as rpcDone } from './chunks/rpc.
|
|
9
|
+
import { c as createRuntimeRpc, a as rpcDone } from './chunks/rpc.TVf73xOu.js';
|
|
10
10
|
import { i as isChildProcess, s as setProcessTitle } from './chunks/utils.C8RiOc4B.js';
|
|
11
11
|
import { d as disposeInternalListeners } from './chunks/utils.Cn0zI1t3.js';
|
|
12
12
|
import 'node:console';
|
package/dist/workers/forks.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import v8 from 'node:v8';
|
|
2
|
-
import { r as runBaseTests } from '../chunks/base.
|
|
2
|
+
import { r as runBaseTests } from '../chunks/base.CUDzyU2J.js';
|
|
3
3
|
import { c as createForksRpcOptions, u as unwrapSerializableConfig } from '../chunks/utils.Cn0zI1t3.js';
|
|
4
4
|
import 'vite-node/client';
|
|
5
|
-
import '../chunks/execute.
|
|
5
|
+
import '../chunks/execute.BMOaRArH.js';
|
|
6
6
|
import 'node:fs';
|
|
7
7
|
import 'node:url';
|
|
8
8
|
import 'node:vm';
|
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
import { createRequire } from 'node:module';
|
|
2
2
|
import { performance } from 'node:perf_hooks';
|
|
3
3
|
import timers from 'node:timers';
|
|
4
|
+
import timersPromises from 'node:timers/promises';
|
|
4
5
|
import util from 'node:util';
|
|
5
6
|
import { startTests, collectTests } from '@vitest/runner';
|
|
6
7
|
import { KNOWN_ASSET_TYPES } from 'vite-node/constants';
|
|
7
8
|
import { installSourcemapsSupport } from 'vite-node/source-map';
|
|
8
|
-
import { s as setupChaiConfig, r as resolveTestRunner, a as resolveSnapshotEnvironment } from '../chunks/index.
|
|
9
|
+
import { s as setupChaiConfig, r as resolveTestRunner, a as resolveSnapshotEnvironment } from '../chunks/index.CUcwvygK.js';
|
|
9
10
|
import { s as startCoverageInsideWorker, a as stopCoverageInsideWorker } from '../chunks/coverage.BWeNbfBa.js';
|
|
10
|
-
import { V as VitestIndex } from '../chunks/index.
|
|
11
|
+
import { V as VitestIndex } from '../chunks/index.BQbxGbG9.js';
|
|
11
12
|
import { c as closeInspector } from '../chunks/inspector.DKLceBVD.js';
|
|
12
|
-
import { s as setupCommonEnv } from '../chunks/setup-common.
|
|
13
|
+
import { s as setupCommonEnv } from '../chunks/setup-common.D0zLenuv.js';
|
|
13
14
|
import { g as getWorkerState } from '../chunks/utils.C8RiOc4B.js';
|
|
14
15
|
import 'chai';
|
|
15
16
|
import 'node:path';
|
|
16
17
|
import '../path.js';
|
|
17
18
|
import 'node:url';
|
|
18
|
-
import '../chunks/rpc.
|
|
19
|
+
import '../chunks/rpc.TVf73xOu.js';
|
|
19
20
|
import '@vitest/utils';
|
|
20
21
|
import '../chunks/index.68735LiX.js';
|
|
21
|
-
import '../chunks/vi.
|
|
22
|
+
import '../chunks/vi.Da_PT3Vw.js';
|
|
22
23
|
import '@vitest/expect';
|
|
23
24
|
import '@vitest/runner/utils';
|
|
24
25
|
import '../chunks/_commonjsHelpers.BFTU3MAI.js';
|
|
@@ -53,7 +54,8 @@ async function run(method, files, config, executor) {
|
|
|
53
54
|
}
|
|
54
55
|
globalThis.__vitest_required__ = {
|
|
55
56
|
util,
|
|
56
|
-
timers
|
|
57
|
+
timers,
|
|
58
|
+
timersPromises
|
|
57
59
|
};
|
|
58
60
|
installSourcemapsSupport({
|
|
59
61
|
getSourceMap: (source) => workerState.moduleCache.getSourceMap(source)
|
package/dist/workers/threads.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { r as runBaseTests } from '../chunks/base.
|
|
1
|
+
import { r as runBaseTests } from '../chunks/base.CUDzyU2J.js';
|
|
2
2
|
import { a as createThreadsRpcOptions } from '../chunks/utils.Cn0zI1t3.js';
|
|
3
3
|
import 'vite-node/client';
|
|
4
|
-
import '../chunks/execute.
|
|
4
|
+
import '../chunks/execute.BMOaRArH.js';
|
|
5
5
|
import 'node:fs';
|
|
6
6
|
import 'node:url';
|
|
7
7
|
import 'node:vm';
|
package/dist/workers/vmForks.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import v8 from 'node:v8';
|
|
2
2
|
import { c as createForksRpcOptions, u as unwrapSerializableConfig } from '../chunks/utils.Cn0zI1t3.js';
|
|
3
|
-
import { r as runVmTests } from '../chunks/vm.
|
|
3
|
+
import { r as runVmTests } from '../chunks/vm.DrFVeTXo.js';
|
|
4
4
|
import '@vitest/utils';
|
|
5
5
|
import 'node:url';
|
|
6
6
|
import 'node:vm';
|
|
7
7
|
import 'pathe';
|
|
8
8
|
import '../path.js';
|
|
9
9
|
import 'node:path';
|
|
10
|
-
import '../chunks/console.
|
|
10
|
+
import '../chunks/console.CN7AiMGV.js';
|
|
11
11
|
import 'node:console';
|
|
12
12
|
import 'node:stream';
|
|
13
13
|
import 'tinyrainbow';
|
|
14
14
|
import '../chunks/date.W2xKR2qe.js';
|
|
15
15
|
import '../chunks/utils.C8RiOc4B.js';
|
|
16
|
-
import '../chunks/execute.
|
|
16
|
+
import '../chunks/execute.BMOaRArH.js';
|
|
17
17
|
import 'node:fs';
|
|
18
18
|
import '@vitest/utils/error';
|
|
19
19
|
import 'vite-node/client';
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { a as createThreadsRpcOptions } from '../chunks/utils.Cn0zI1t3.js';
|
|
2
|
-
import { r as runVmTests } from '../chunks/vm.
|
|
2
|
+
import { r as runVmTests } from '../chunks/vm.DrFVeTXo.js';
|
|
3
3
|
import '@vitest/utils';
|
|
4
4
|
import 'node:url';
|
|
5
5
|
import 'node:vm';
|
|
6
6
|
import 'pathe';
|
|
7
7
|
import '../path.js';
|
|
8
8
|
import 'node:path';
|
|
9
|
-
import '../chunks/console.
|
|
9
|
+
import '../chunks/console.CN7AiMGV.js';
|
|
10
10
|
import 'node:console';
|
|
11
11
|
import 'node:stream';
|
|
12
12
|
import 'tinyrainbow';
|
|
13
13
|
import '../chunks/date.W2xKR2qe.js';
|
|
14
14
|
import '../chunks/utils.C8RiOc4B.js';
|
|
15
|
-
import '../chunks/execute.
|
|
15
|
+
import '../chunks/execute.BMOaRArH.js';
|
|
16
16
|
import 'node:fs';
|
|
17
17
|
import '@vitest/utils/error';
|
|
18
18
|
import 'vite-node/client';
|
package/dist/workers.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { W as WorkerGlobalState, C as ContextRPC, B as BirpcOptions, R as RuntimeRPC } from './chunks/worker.
|
|
1
|
+
import { W as WorkerGlobalState, C as ContextRPC, B as BirpcOptions, R as RuntimeRPC } from './chunks/worker.CIpff8Eg.js';
|
|
2
2
|
import { Awaitable } from '@vitest/utils';
|
|
3
3
|
import * as v8 from 'v8';
|
|
4
|
-
import { S as SerializedConfig } from './chunks/config.
|
|
5
|
-
import { W as WorkerContext } from './chunks/worker.
|
|
4
|
+
import { S as SerializedConfig } from './chunks/config.BRtC-JeT.js';
|
|
5
|
+
import { W as WorkerContext } from './chunks/worker.B1y96qmv.js';
|
|
6
6
|
import '@vitest/runner';
|
|
7
7
|
import 'vite-node';
|
|
8
8
|
import './chunks/environment.d8YfPkTm.js';
|
package/dist/workers.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export { p as provideWorkerState } from './chunks/utils.C8RiOc4B.js';
|
|
2
2
|
export { collect as collectVitestWorkerTests, run as runVitestWorker } from './worker.js';
|
|
3
|
-
export { r as runBaseTests } from './chunks/base.
|
|
3
|
+
export { r as runBaseTests } from './chunks/base.CUDzyU2J.js';
|
|
4
4
|
export { c as createForksRpcOptions, a as createThreadsRpcOptions, u as unwrapSerializableConfig } from './chunks/utils.Cn0zI1t3.js';
|
|
5
|
-
export { r as runVmTests } from './chunks/vm.
|
|
5
|
+
export { r as runVmTests } from './chunks/vm.DrFVeTXo.js';
|
|
6
6
|
import '@vitest/utils';
|
|
7
7
|
import 'node:url';
|
|
8
8
|
import '@vitest/utils/source-map';
|
|
@@ -14,16 +14,16 @@ import './chunks/index.K90BXFOx.js';
|
|
|
14
14
|
import 'node:console';
|
|
15
15
|
import './chunks/inspector.DKLceBVD.js';
|
|
16
16
|
import 'node:module';
|
|
17
|
-
import './chunks/rpc.
|
|
17
|
+
import './chunks/rpc.TVf73xOu.js';
|
|
18
18
|
import './chunks/index.68735LiX.js';
|
|
19
|
-
import './chunks/execute.
|
|
19
|
+
import './chunks/execute.BMOaRArH.js';
|
|
20
20
|
import 'node:vm';
|
|
21
21
|
import '@vitest/utils/error';
|
|
22
22
|
import 'vite-node/utils';
|
|
23
23
|
import './path.js';
|
|
24
24
|
import 'node:path';
|
|
25
25
|
import '@vitest/mocker';
|
|
26
|
-
import './chunks/console.
|
|
26
|
+
import './chunks/console.CN7AiMGV.js';
|
|
27
27
|
import 'node:stream';
|
|
28
28
|
import 'tinyrainbow';
|
|
29
29
|
import './chunks/date.W2xKR2qe.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vitest",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "3.0.0
|
|
4
|
+
"version": "3.0.0",
|
|
5
5
|
"description": "Next generation testing framework powered by Vite",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -122,8 +122,8 @@
|
|
|
122
122
|
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
123
123
|
"happy-dom": "*",
|
|
124
124
|
"jsdom": "*",
|
|
125
|
-
"@vitest/browser": "3.0.0
|
|
126
|
-
"@vitest/ui": "3.0.0
|
|
125
|
+
"@vitest/browser": "3.0.0",
|
|
126
|
+
"@vitest/ui": "3.0.0"
|
|
127
127
|
},
|
|
128
128
|
"peerDependenciesMeta": {
|
|
129
129
|
"@edge-runtime/vm": {
|
|
@@ -150,28 +150,28 @@
|
|
|
150
150
|
"debug": "^4.4.0",
|
|
151
151
|
"expect-type": "^1.1.0",
|
|
152
152
|
"magic-string": "^0.30.17",
|
|
153
|
-
"pathe": "^
|
|
153
|
+
"pathe": "^2.0.0",
|
|
154
154
|
"std-env": "^3.8.0",
|
|
155
155
|
"tinybench": "^2.9.0",
|
|
156
|
-
"tinyexec": "^0.3.
|
|
156
|
+
"tinyexec": "^0.3.2",
|
|
157
157
|
"tinypool": "^1.0.2",
|
|
158
|
-
"tinyrainbow": "^
|
|
158
|
+
"tinyrainbow": "^2.0.0",
|
|
159
159
|
"vite": "^5.0.0 || ^6.0.0",
|
|
160
160
|
"why-is-node-running": "^2.3.0",
|
|
161
|
-
"@vitest/
|
|
162
|
-
"@vitest/
|
|
163
|
-
"@vitest/
|
|
164
|
-
"@vitest/
|
|
165
|
-
"@vitest/
|
|
166
|
-
"@vitest/
|
|
167
|
-
"vite-node": "3.0.0
|
|
168
|
-
"@vitest/
|
|
161
|
+
"@vitest/mocker": "3.0.0",
|
|
162
|
+
"@vitest/pretty-format": "^3.0.0",
|
|
163
|
+
"@vitest/snapshot": "3.0.0",
|
|
164
|
+
"@vitest/spy": "3.0.0",
|
|
165
|
+
"@vitest/utils": "3.0.0",
|
|
166
|
+
"@vitest/runner": "3.0.0",
|
|
167
|
+
"vite-node": "3.0.0",
|
|
168
|
+
"@vitest/expect": "3.0.0"
|
|
169
169
|
},
|
|
170
170
|
"devDependencies": {
|
|
171
171
|
"@ampproject/remapping": "^2.3.0",
|
|
172
|
-
"@antfu/install-pkg": "^0.
|
|
172
|
+
"@antfu/install-pkg": "^1.0.0",
|
|
173
173
|
"@edge-runtime/vm": "^5.0.0",
|
|
174
|
-
"@sinonjs/fake-timers": "
|
|
174
|
+
"@sinonjs/fake-timers": "14.0.0",
|
|
175
175
|
"@types/debug": "^4.1.12",
|
|
176
176
|
"@types/estree": "^1.0.6",
|
|
177
177
|
"@types/istanbul-lib-coverage": "^2.0.6",
|
|
@@ -185,15 +185,13 @@
|
|
|
185
185
|
"birpc": "0.2.19",
|
|
186
186
|
"cac": "^6.7.14",
|
|
187
187
|
"chai-subset": "^1.6.0",
|
|
188
|
-
"cli-truncate": "^4.0.0",
|
|
189
188
|
"fast-glob": "3.3.2",
|
|
190
189
|
"find-up": "^6.3.0",
|
|
191
190
|
"flatted": "^3.3.2",
|
|
192
191
|
"get-tsconfig": "^4.8.1",
|
|
193
|
-
"happy-dom": "^
|
|
192
|
+
"happy-dom": "^16.0.1",
|
|
194
193
|
"jsdom": "^25.0.1",
|
|
195
194
|
"local-pkg": "^0.5.1",
|
|
196
|
-
"log-update": "^5.0.1",
|
|
197
195
|
"micromatch": "^4.0.8",
|
|
198
196
|
"pretty-format": "^29.7.0",
|
|
199
197
|
"prompts": "^2.4.2",
|