Skip to content

Commit ddd6fed

Browse files
committed
fix(command/dev): use ip for localhost to avoid ip6 conflicts
1 parent 4db854d commit ddd6fed

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
| Statements | Branches | Functions | Lines |
88
| --------------------------- | ----------------------- | ------------------------- | ----------------- |
9-
| ![Statements](https://img.shields.io/badge/Coverage-99.11%25-brightgreen.svg) | ![Branches](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg) | ![Functions](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg) | ![Lines](https://img.shields.io/badge/Coverage-99.1%25-brightgreen.svg) |
9+
| ![Statements](https://img.shields.io/badge/Coverage-99.11%25-brightgreen.svg) | ![Branches](https://img.shields.io/badge/Coverage-98.11%25-brightgreen.svg) | ![Functions](https://img.shields.io/badge/Coverage-100%25-brightgreen.svg) | ![Lines](https://img.shields.io/badge/Coverage-99.1%25-brightgreen.svg) |
1010

1111
This package allows to develop a nuxt SPA as frontend for a laravel backend.
1212
The implementation is based on [laravel-nuxt-js](https://github.com/skyrpex/laravel-nuxt-js) by [skyrpex](https://github.com/skyrpex).

dist/subcommands/dev.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/subcommands/dev.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const config: NuxtLaravelCommandConfig = {
2020
name: 'nuxt-laravel-dev',
2121
description:
2222
'Start laravel development server and run the application in development mode (e.g. hot-code reloading, error reporting)',
23+
usage: 'laravel dev <dir>',
2324
options: {
2425
...common,
2526
...server,
@@ -132,7 +133,6 @@ const config: NuxtLaravelCommandConfig = {
132133
type: 'string'
133134
}
134135
},
135-
usage: 'laravel dev <dir>',
136136
async run(cmd) {
137137
const options = await loadNuxtConfig(cmd.argv)
138138

@@ -155,7 +155,9 @@ const config: NuxtLaravelCommandConfig = {
155155
[
156156
'artisan',
157157
'serve',
158-
`--host=${nuxtUrl.hostname}`,
158+
`--host=${
159+
nuxtUrl.hostname === 'localhost' ? '127.0.0.1' : nuxtUrl.hostname
160+
}`,
159161
`--port=${+nuxtUrl.port + 1}`
160162
],
161163
{

tests/unit/subcommands/dev.spec.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,11 @@ const laravelTest = () => {
409409
expect.arrayContaining([
410410
'artisan',
411411
'serve',
412-
`--host=${expected.server.host}`,
412+
`--host=${
413+
expected.server.host === 'localhost'
414+
? '127.0.0.1'
415+
: expected.server.host
416+
}`,
413417
`--port=${expected.server.port + 1}`
414418
]),
415419
expect.objectContaining({

0 commit comments

Comments
 (0)