Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ Options:
--https-key <value> Path to an SSL key.
--https-pfx <value> Path to an SSL pfx file.
--https-cert <value> Path to an SSL certificate.
--ipc [value] Listen to a unix socket. https://webpack.js.org/configuration/dev-server/#devserveripc
--live-reload Enables reload/refresh the page(s) when file changes are detected (enabled by default).
https://webpack.js.org/configuration/dev-server/#devserverlivereload
--no-live-reload Negative 'live-reload' option.
Expand Down
23 changes: 23 additions & 0 deletions bin/cli-flags.js
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,29 @@ module.exports = {
simpleType: 'string',
multiple: false,
},
ipc: {
configs: [
{
type: 'string',
multiple: false,
description:
'Listen to a unix socket. https://webpack.js.org/configuration/dev-server/#devserveripc',
path: 'ipc',
},
{
type: 'enum',
values: [true],
multiple: false,
description:
'Listen to a unix socket. https://webpack.js.org/configuration/dev-server/#devserveripc',
path: 'ipc',
},
],
description:
'Listen to a unix socket. https://webpack.js.org/configuration/dev-server/#devserveripc',
simpleType: 'string',
multiple: false,
},
'live-reload': {
configs: [
{
Expand Down
Loading