@nuxt/kit 3.5.0 → 3.5.2
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -115,7 +115,7 @@ Follow the docs to [Set Up Your Local Development Environment](https://nuxt.com/
|
|
|
115
115
|
|
|
116
116
|
## Nuxt 2
|
|
117
117
|
|
|
118
|
-
You can find the code for Nuxt 2 on the [`2.x` branch](https://github.com/nuxt/nuxt/tree/2.x) and the documentation at [
|
|
118
|
+
You can find the code for Nuxt 2 on the [`2.x` branch](https://github.com/nuxt/nuxt/tree/2.x) and the documentation at [v2.nuxt.com](https://v2.nuxt.com).
|
|
119
119
|
|
|
120
120
|
## Follow us
|
|
121
121
|
|
package/dist/index.mjs
CHANGED
|
@@ -461,7 +461,7 @@ const normalizeModuleTranspilePath = (p) => {
|
|
|
461
461
|
async function normalizeModule(nuxtModule, inlineOptions) {
|
|
462
462
|
const nuxt = useNuxt();
|
|
463
463
|
if (typeof nuxtModule === "string") {
|
|
464
|
-
const src =
|
|
464
|
+
const src = await resolvePath(nuxtModule);
|
|
465
465
|
try {
|
|
466
466
|
nuxtModule = await importModule(src, nuxt.options.modulesDir).catch(() => null) ?? requireModule(src, { paths: nuxt.options.modulesDir });
|
|
467
467
|
} catch (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/kit",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.2",
|
|
4
4
|
"repository": "nuxt/nuxt",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -26,25 +26,25 @@
|
|
|
26
26
|
"jiti": "^1.18.2",
|
|
27
27
|
"knitwork": "^1.0.0",
|
|
28
28
|
"lodash.template": "^4.5.0",
|
|
29
|
-
"mlly": "^1.
|
|
29
|
+
"mlly": "^1.3.0",
|
|
30
30
|
"pathe": "^1.1.0",
|
|
31
31
|
"pkg-types": "^1.0.3",
|
|
32
32
|
"scule": "^1.0.0",
|
|
33
33
|
"semver": "^7.5.1",
|
|
34
|
-
"unctx": "^2.3.
|
|
35
|
-
"unimport": "^3.0.
|
|
34
|
+
"unctx": "^2.3.1",
|
|
35
|
+
"unimport": "^3.0.7",
|
|
36
36
|
"untyped": "^1.3.2",
|
|
37
|
-
"@nuxt/schema": "3.5.
|
|
37
|
+
"@nuxt/schema": "3.5.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/hash-sum": "^1.0.0",
|
|
41
41
|
"@types/lodash.template": "^4.5.1",
|
|
42
42
|
"@types/semver": "^7.5.0",
|
|
43
|
-
"nitropack": "^2.4.
|
|
43
|
+
"nitropack": "^2.4.1",
|
|
44
44
|
"unbuild": "latest",
|
|
45
|
-
"vite": "^4.3.
|
|
46
|
-
"vitest": "^0.31.
|
|
47
|
-
"webpack": "^5.
|
|
45
|
+
"vite": "^4.3.9",
|
|
46
|
+
"vitest": "^0.31.1",
|
|
47
|
+
"webpack": "^5.84.1"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": "^14.18.0 || >=16.10.0"
|