@nuxt/nitro-server-nightly 4.3.0-29466464.139ef2bd → 4.3.0-29466680.0598aa0b

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.
Files changed (2) hide show
  1. package/dist/index.mjs +4 -1
  2. package/package.json +5 -5
package/dist/index.mjs CHANGED
@@ -18,9 +18,10 @@ import { defineEventHandler, dynamicEventHandler, handleCors, setHeader } from "
18
18
  import { isWindows } from "std-env";
19
19
  import { ImpoundPlugin } from "impound";
20
20
  import { resolveModulePath } from "exsolve";
21
+ import { runtimeDependencies } from "nitropack/runtime/meta";
21
22
 
22
23
  //#region package.json
23
- var version = "4.3.0-29466464.139ef2bd";
24
+ var version = "4.3.0-29466680.0598aa0b";
24
25
 
25
26
  //#endregion
26
27
  //#region src/utils.ts
@@ -612,6 +613,8 @@ async function bundle(nuxt) {
612
613
  } });
613
614
  nuxt._nitro = nitro;
614
615
  await nuxt.callHook("nitro:init", nitro);
616
+ nuxt["~runtimeDependencies"] ||= [];
617
+ nuxt["~runtimeDependencies"].push(...runtimeDependencies, "unhead", "@unhead/vue", "@nuxt/devalue", "unstorage", ...nitro.options.inlineDynamicImports ? ["vue", "@vue/server-renderer"] : []);
615
618
  nitro.vfs = nuxt.vfs = nitro.vfs || nuxt.vfs || {};
616
619
  nuxt.hook("close", () => nitro.hooks.callHook("close"));
617
620
  nitro.hooks.hook("prerender:routes", (routes) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/nitro-server-nightly",
3
- "version": "4.3.0-29466464.139ef2bd",
3
+ "version": "4.3.0-29466680.0598aa0b",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "@nuxt/devalue": "^2.0.2",
22
- "@nuxt/kit": "npm:@nuxt/kit-nightly@4.3.0-29466464.139ef2bd",
22
+ "@nuxt/kit": "npm:@nuxt/kit-nightly@4.3.0-29466680.0598aa0b",
23
23
  "@unhead/vue": "^2.1.1",
24
24
  "@vue/shared": "^3.5.26",
25
25
  "consola": "^3.4.2",
@@ -47,11 +47,11 @@
47
47
  "vue-devtools-stub": "^0.1.0"
48
48
  },
49
49
  "peerDependencies": {
50
- "nuxt": "npm:nuxt-nightly@4.3.0-29466464.139ef2bd"
50
+ "nuxt": "npm:nuxt-nightly@4.3.0-29466680.0598aa0b"
51
51
  },
52
52
  "devDependencies": {
53
- "@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-29466464.139ef2bd",
54
- "nuxt": "npm:nuxt-nightly@4.3.0-29466464.139ef2bd",
53
+ "@nuxt/schema": "npm:@nuxt/schema-nightly@4.3.0-29466680.0598aa0b",
54
+ "nuxt": "npm:nuxt-nightly@4.3.0-29466680.0598aa0b",
55
55
  "obuild": "0.4.14",
56
56
  "vitest": "3.2.4"
57
57
  },