@nuxt/cli-nightly 3.31.0-20251104-171725-fd1747f → 3.31.0-20251105-141736-5278c9e

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.
@@ -1,5 +1,5 @@
1
1
  import "../logger-Dk0gkCkX.mjs";
2
- import { t as initialize } from "../dev-BYEMtZLe.mjs";
2
+ import { t as initialize } from "../dev-Bf9P_WmH.mjs";
3
3
  import "../kit-f7zsnm10.mjs";
4
4
  import "../banner-CWBLwDiB.mjs";
5
5
  import "../fs--ofMleGo.mjs";
@@ -433,7 +433,8 @@ var NuxtDevServer = class extends EventEmitter {
433
433
  const nuxtConfig = this.#currentNuxt.options;
434
434
  const overrides = this.options.listenOverrides || {};
435
435
  const port = overrides.port ?? nuxtConfig.devServer?.port;
436
- const hostname = overrides.hostname ?? overrides.host ?? nuxtConfig.devServer?.host;
436
+ const rawHost = overrides.hostname ?? overrides.host;
437
+ const hostname = (rawHost === true ? "" : rawHost) ?? nuxtConfig.devServer?.host;
437
438
  const isPublic = provider === "codesandbox" || (overrides.public ?? (isPublicHostname(hostname) ? true : void 0));
438
439
  const httpsFromConfig = typeof nuxtConfig.devServer?.https !== "boolean" && nuxtConfig.devServer?.https ? nuxtConfig.devServer.https : {};
439
440
  const httpsOptions = !!(overrides.https ?? nuxtConfig.devServer?.https) && {
@@ -1,5 +1,5 @@
1
1
  import "./logger-Dk0gkCkX.mjs";
2
- import { t as initialize } from "./dev-BYEMtZLe.mjs";
2
+ import { t as initialize } from "./dev-Bf9P_WmH.mjs";
3
3
  import "./kit-f7zsnm10.mjs";
4
4
  import "./banner-CWBLwDiB.mjs";
5
5
  import "./fs--ofMleGo.mjs";
@@ -1,6 +1,6 @@
1
1
  import { a as legacyRootDirArgs, i as extendsArgs, n as dotEnvArgs, o as logLevelArgs, r as envNameArgs, t as cwdArgs } from "./_shared-C3vB2YLc.mjs";
2
2
  import { t as logger } from "./logger-Dk0gkCkX.mjs";
3
- import { t as initialize } from "./dev-BYEMtZLe.mjs";
3
+ import { t as initialize } from "./dev-Bf9P_WmH.mjs";
4
4
  import "./kit-f7zsnm10.mjs";
5
5
  import "./banner-CWBLwDiB.mjs";
6
6
  import "./fs--ofMleGo.mjs";
@@ -25,7 +25,7 @@ var dev_child_default = defineCommand({
25
25
  async run(ctx) {
26
26
  if (!process.send && !isTest) console.warn("`nuxi _dev` is an internal command and should not be used directly. Please use `nuxi dev` instead.");
27
27
  const cwd = resolve(ctx.args.cwd || ctx.args.rootDir);
28
- const { initialize } = await import("./dev-CD5a8ssT.mjs");
28
+ const { initialize } = await import("./dev-CNjdVPgl.mjs");
29
29
  await initialize({
30
30
  cwd,
31
31
  args: ctx.args
package/dist/index.mjs CHANGED
@@ -15,11 +15,11 @@ const commands = {
15
15
  analyze: () => import("./analyze-Ji0eD4TL.mjs").then(_rDefault),
16
16
  build: () => import("./build-BEXmJONc.mjs").then(_rDefault),
17
17
  cleanup: () => import("./cleanup-X4v95Xqm.mjs").then(_rDefault),
18
- _dev: () => import("./dev-child-Dcs4VQnN.mjs").then(_rDefault),
19
- dev: () => import("./dev-nr2jb3A5.mjs").then(_rDefault),
18
+ _dev: () => import("./dev-child-GqhyRU2G.mjs").then(_rDefault),
19
+ dev: () => import("./dev-aS1afvp8.mjs").then(_rDefault),
20
20
  devtools: () => import("./devtools-BLGzUSNU.mjs").then(_rDefault),
21
21
  generate: () => import("./generate-DZJF1Xf_.mjs").then(_rDefault),
22
- info: () => import("./info-CMV1qV_q.mjs").then(_rDefault),
22
+ info: () => import("./info-MOKRmSlp.mjs").then(_rDefault),
23
23
  init: () => import("./init-DX0yoR1B.mjs").then(_rDefault),
24
24
  module: () => import("./module-t-MDBA3Y.mjs").then(_rDefault),
25
25
  prepare: () => import("./prepare-ZByeo9vQ.mjs").then(_rDefault),
@@ -64,7 +64,7 @@ async function checkEngines() {
64
64
  //#endregion
65
65
  //#region package.json
66
66
  var name = "@nuxt/cli-nightly";
67
- var version = "3.31.0-20251104-171725-fd1747f";
67
+ var version = "3.31.0-20251105-141736-5278c9e";
68
68
  var description = "Nuxt CLI";
69
69
 
70
70
  //#endregion
@@ -13,7 +13,7 @@ import { detectPackageManager } from "nypm";
13
13
  import { readPackageJSON } from "pkg-types";
14
14
 
15
15
  //#region ../nuxi/package.json
16
- var version = "3.31.0-20251104-171713-fd1747f";
16
+ var version = "3.31.0-20251105-141724-5278c9e";
17
17
 
18
18
  //#endregion
19
19
  //#region ../nuxi/src/commands/info.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/cli-nightly",
3
3
  "type": "module",
4
- "version": "3.31.0-20251104-171725-fd1747f",
4
+ "version": "3.31.0-20251105-141736-5278c9e",
5
5
  "description": "Nuxt CLI",
6
6
  "license": "MIT",
7
7
  "repository": {