@nuxt/kit 3.5.0 → 3.5.1
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/dist/index.mjs +1 -1
- package/package.json +7 -7
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.1",
|
|
4
4
|
"repository": "nuxt/nuxt",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -32,19 +32,19 @@
|
|
|
32
32
|
"scule": "^1.0.0",
|
|
33
33
|
"semver": "^7.5.1",
|
|
34
34
|
"unctx": "^2.3.0",
|
|
35
|
-
"unimport": "^3.0.
|
|
35
|
+
"unimport": "^3.0.7",
|
|
36
36
|
"untyped": "^1.3.2",
|
|
37
|
-
"@nuxt/schema": "3.5.
|
|
37
|
+
"@nuxt/schema": "3.5.1"
|
|
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.8",
|
|
46
|
+
"vitest": "^0.31.1",
|
|
47
|
+
"webpack": "^5.83.1"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": "^14.18.0 || >=16.10.0"
|