@h3ravel/http 11.2.0 → 11.2.2
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.cjs +2 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -18324,7 +18324,6 @@ var FireCommand = class extends __h3ravel_core.ConsoleCommand {
|
|
|
18324
18324
|
{--a|host=localhost : The host address to serve the application on}
|
|
18325
18325
|
{--p|port=3000 : The port to serve the application on}
|
|
18326
18326
|
{--t|tries=10 : The max number of ports to attempt to serve from}
|
|
18327
|
-
{--d|debug : Show extra debug info, like registered service providers and more}
|
|
18328
18327
|
`;
|
|
18329
18328
|
/**
|
|
18330
18329
|
* The console command description.
|
|
@@ -18346,10 +18345,10 @@ var FireCommand = class extends __h3ravel_core.ConsoleCommand {
|
|
|
18346
18345
|
const host = this.option("host");
|
|
18347
18346
|
const tries = this.option("tries");
|
|
18348
18347
|
const ENV_VARS = {
|
|
18349
|
-
EXTENDED_DEBUG: this.option("
|
|
18348
|
+
EXTENDED_DEBUG: Number(this.option("verbose", 0)) > 0 ? "true" : "false",
|
|
18350
18349
|
CLI_BUILD: "false",
|
|
18351
18350
|
NODE_ENV: "development",
|
|
18352
|
-
|
|
18351
|
+
DIST_DIR: outDir,
|
|
18353
18352
|
HOSTNAME: host,
|
|
18354
18353
|
RETRIES: tries,
|
|
18355
18354
|
PORT: port
|