@adonisjs/assembler
Advanced tools
Comparing version 6.1.3-26 to 6.1.3-27
@@ -291,2 +291,3 @@ // src/bundler.ts | ||
import picomatch from "picomatch"; | ||
import prettyHrtime from "pretty-hrtime"; | ||
import { cliui as cliui3 } from "@poppinss/cliui"; | ||
@@ -414,3 +415,2 @@ | ||
// src/dev_server.ts | ||
import prettyHrtime from "pretty-hrtime"; | ||
var ui3 = cliui3(); | ||
@@ -474,3 +474,4 @@ var DevServer = class { | ||
const readyAt = process.hrtime(initialTime); | ||
ui3.sticker().useColors(this.#colors).useRenderer(this.#logger.getRenderer()).add(`Server address: ${this.#colors.cyan(`http://${message.host}:${message.port}`)}`).add( | ||
const host = message.host === "0.0.0.0" ? "127.0.0.1" : message.host; | ||
ui3.sticker().useColors(this.#colors).useRenderer(this.#logger.getRenderer()).add(`Server address: ${this.#colors.cyan(`http://${host}:${message.port}`)}`).add( | ||
`File system watcher: ${this.#colors.cyan( | ||
@@ -477,0 +478,0 @@ `${this.#isWatching ? "enabled" : "disabled"}` |
{ | ||
"name": "@adonisjs/assembler", | ||
"description": "Provides utilities to run AdonisJS development server and build project for production", | ||
"version": "6.1.3-26", | ||
"version": "6.1.3-27", | ||
"engines": { | ||
@@ -6,0 +6,0 @@ "node": ">=18.16.0" |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
142286
1751