@nuxt/nitro-server-nightly 4.2.1-29370820.95518afa → 4.2.1-29370847.26aaf83d

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 CHANGED
@@ -1,6 +1,7 @@
1
1
  import { fileURLToPath, pathToFileURL } from 'node:url';
2
2
  import { existsSync, promises, readFileSync } from 'node:fs';
3
3
  import { cpus } from 'node:os';
4
+ import process from 'node:process';
4
5
  import { readFile, mkdir, writeFile } from 'node:fs/promises';
5
6
  import { randomUUID } from 'node:crypto';
6
7
  import { dirname, relative, resolve, join, isAbsolute } from 'pathe';
@@ -16,7 +17,7 @@ import { isWindows } from 'std-env';
16
17
  import { ImpoundPlugin } from 'impound';
17
18
  import { resolveModulePath } from 'exsolve';
18
19
 
19
- const version = "4.2.1-29370820.95518afa";
20
+ const version = "4.2.1-29370847.26aaf83d";
20
21
 
21
22
  function toArray(value) {
22
23
  return Array.isArray(value) ? value : [value];
@@ -1,4 +1,5 @@
1
1
  import { AsyncLocalStorage } from "node:async_hooks";
2
+ import process from "node:process";
2
3
  import {
3
4
  getPrefetchLinks,
4
5
  getPreloadLinks,
@@ -1,4 +1,5 @@
1
1
  import { useStorage } from "nitropack/runtime";
2
+ import process from "node:process";
2
3
  export const payloadCache = import.meta.prerender ? useStorage("internal:nuxt:prerender:payload") : null;
3
4
  export const islandCache = import.meta.prerender ? useStorage("internal:nuxt:prerender:island") : null;
4
5
  export const islandPropCache = import.meta.prerender ? useStorage("internal:nuxt:prerender:island-props") : null;
@@ -1,3 +1,4 @@
1
+ import process from "node:process";
1
2
  import { useRuntimeConfig } from "nitropack/runtime";
2
3
  import { createHead } from "@unhead/vue/server";
3
4
  import { sharedPrerenderCache } from "../cache.js";
@@ -1,3 +1,4 @@
1
+ import process from "node:process";
1
2
  import { createRenderer } from "vue-bundle-renderer/runtime";
2
3
  import { renderToString as _renderToString } from "vue/server-renderer";
3
4
  import { propsToString } from "@unhead/vue/server";
@@ -1,3 +1,4 @@
1
+ import process from "node:process";
1
2
  import { getResponseStatus, getResponseStatusText } from "h3";
2
3
  import devalue from "@nuxt/devalue";
3
4
  import { stringify, uneval } from "devalue";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/nitro-server-nightly",
3
- "version": "4.2.1-29370820.95518afa",
3
+ "version": "4.2.1-29370847.26aaf83d",
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.2.1-29370820.95518afa",
22
+ "@nuxt/kit": "npm:@nuxt/kit-nightly@4.2.1-29370847.26aaf83d",
23
23
  "@unhead/vue": "^2.0.19",
24
24
  "@vue/shared": "^3.5.22",
25
25
  "consola": "^3.4.2",
@@ -46,11 +46,11 @@
46
46
  "vue-devtools-stub": "^0.1.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "nuxt": "npm:nuxt-nightly@4.2.1-29370820.95518afa"
49
+ "nuxt": "npm:nuxt-nightly@4.2.1-29370847.26aaf83d"
50
50
  },
51
51
  "devDependencies": {
52
- "@nuxt/schema": "npm:@nuxt/schema-nightly@4.2.1-29370820.95518afa",
53
- "nuxt": "npm:nuxt-nightly@4.2.1-29370820.95518afa",
52
+ "@nuxt/schema": "npm:@nuxt/schema-nightly@4.2.1-29370847.26aaf83d",
53
+ "nuxt": "npm:nuxt-nightly@4.2.1-29370847.26aaf83d",
54
54
  "unbuild": "3.6.1",
55
55
  "vitest": "3.2.4"
56
56
  },