@nuxt/test-utils 3.2.2 → 3.3.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/README.md +1 -0
- package/package.json +13 -8
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@ Nuxt's goal is to make web development intuitive and performant, with a great de
|
|
|
11
11
|
<a href="https://www.npmjs.com/package/nuxt"><img src="https://img.shields.io/npm/v/nuxt.svg?style=flat&colorA=18181B&colorB=28CF8D" alt="Version"></a>
|
|
12
12
|
<a href="https://www.npmjs.com/package/nuxt"><img src="https://img.shields.io/npm/dm/nuxt.svg?style=flat&colorA=18181B&colorB=28CF8D" alt="Downloads"></a>
|
|
13
13
|
<a href="./LICENSE"><img src="https://img.shields.io/github/license/nuxt/nuxt.svg?style=flat&colorA=18181B&colorB=28CF8D" alt="License"></a>
|
|
14
|
+
<a href="https://nuxt.com"><img src="https://img.shields.io/badge/Open%20Documentation-18181B?logo=nuxt.js" alt="Website"></a>
|
|
14
15
|
<a href="https://volta.net/nuxt/nuxt?utm_source=nuxt_readme"><img src="https://user-images.githubusercontent.com/904724/209143798-32345f6c-3cf8-4e06-9659-f4ace4a6acde.svg" alt="Volta board"></a>
|
|
15
16
|
</p>
|
|
16
17
|
|
package/package.json
CHANGED
|
@@ -1,29 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/test-utils",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"repository": "nuxt/nuxt",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"exports": "./dist/index.mjs",
|
|
8
7
|
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
9
14
|
"files": [
|
|
10
15
|
"dist"
|
|
11
16
|
],
|
|
12
17
|
"dependencies": {
|
|
13
|
-
"@nuxt/kit": "3.
|
|
14
|
-
"@nuxt/schema": "3.
|
|
18
|
+
"@nuxt/kit": "3.3.0",
|
|
19
|
+
"@nuxt/schema": "3.3.0",
|
|
15
20
|
"consola": "^2.15.3",
|
|
16
21
|
"defu": "^6.1.2",
|
|
17
|
-
"execa": "^7.
|
|
22
|
+
"execa": "^7.1.0",
|
|
18
23
|
"get-port-please": "^3.0.1",
|
|
19
|
-
"jiti": "^1.17.
|
|
24
|
+
"jiti": "^1.17.2",
|
|
20
25
|
"ofetch": "^1.0.1",
|
|
21
26
|
"pathe": "^1.1.0"
|
|
22
27
|
},
|
|
23
28
|
"devDependencies": {
|
|
24
|
-
"playwright": "^1.
|
|
29
|
+
"playwright": "^1.31.2",
|
|
25
30
|
"unbuild": "latest",
|
|
26
|
-
"vitest": "^0.
|
|
31
|
+
"vitest": "^0.29.2"
|
|
27
32
|
},
|
|
28
33
|
"peerDependencies": {
|
|
29
34
|
"vue": "^3.2.47"
|