|
39 | 39 | "clientLogLevel": { |
40 | 40 | "enum": ["info", "warn", "error", "debug", "trace", "silent"] |
41 | 41 | }, |
42 | | - "clientSocketOptions": { |
43 | | - "type": "object", |
44 | | - "properties": { |
45 | | - "host": { |
46 | | - "type": "string" |
47 | | - }, |
48 | | - "path": { |
49 | | - "type": "string" |
50 | | - }, |
51 | | - "port": { |
52 | | - "anyOf": [ |
53 | | - { |
54 | | - "type": "string" |
55 | | - }, |
56 | | - { |
57 | | - "type": "number" |
58 | | - } |
59 | | - ] |
60 | | - } |
61 | | - } |
62 | | - }, |
63 | 42 | "compress": { |
64 | 43 | "type": "boolean" |
65 | 44 | }, |
|
318 | 297 | "setup": { |
319 | 298 | "instanceof": "Function" |
320 | 299 | }, |
| 300 | + "sockHost": { |
| 301 | + "type": "string" |
| 302 | + }, |
| 303 | + "sockPath": { |
| 304 | + "type": "string" |
| 305 | + }, |
| 306 | + "sockPort": { |
| 307 | + "anyOf": [ |
| 308 | + { |
| 309 | + "type": "number" |
| 310 | + }, |
| 311 | + { |
| 312 | + "type": "string" |
| 313 | + }, |
| 314 | + { |
| 315 | + "type": "null" |
| 316 | + } |
| 317 | + ] |
| 318 | + }, |
321 | 319 | "socket": { |
322 | 320 | "type": "string" |
323 | 321 | }, |
|
405 | 403 | "ca": "should be {String|Buffer}", |
406 | 404 | "cert": "should be {String|Buffer}", |
407 | 405 | "clientLogLevel": "should be {String} and equal to one of the allowed values\n\n [ 'silent', 'info', 'debug', 'trace', 'error', 'warn' ]\n\n (https://webpack.js.org/configuration/dev-server/#devserverclientloglevel)", |
408 | | - "clientSocketOptions": "should be {Object} (https://webpack.js.org/configuration/dev-server/#devserverclientsocketoptions)", |
409 | 406 | "compress": "should be {Boolean} (https://webpack.js.org/configuration/dev-server/#devservercompress)", |
410 | 407 | "contentBase": "should be {Number|String|Array} (https://webpack.js.org/configuration/dev-server/#devservercontentbase)", |
411 | 408 | "disableHostCheck": "should be {Boolean} (https://webpack.js.org/configuration/dev-server/#devserverdisablehostcheck)", |
|
449 | 446 | "serveIndex": "should be {Boolean} (https://webpack.js.org/configuration/dev-server/#devserverserveindex)", |
450 | 447 | "serverSideRender": "should be {Boolean} (https://github.com/webpack/webpack-dev-middleware#serversiderender)", |
451 | 448 | "setup": "should be {Function} (https://webpack.js.org/configuration/dev-server/#devserversetup)", |
| 449 | + "sockHost": "should be {String|Null} (https://webpack.js.org/configuration/dev-server/#devserversockhost)", |
| 450 | + "sockPath": "should be {String} (https://webpack.js.org/configuration/dev-server/#devserversockpath)", |
| 451 | + "sockPort": "should be {Number|String|Null} (https://webpack.js.org/configuration/dev-server/#devserversockport)", |
452 | 452 | "socket": "should be {String} (https://webpack.js.org/configuration/dev-server/#devserversocket)", |
453 | 453 | "staticOptions": "should be {Object} (https://webpack.js.org/configuration/dev-server/#devserverstaticoptions)", |
454 | 454 | "stats": "should be {Object|Boolean} (https://webpack.js.org/configuration/dev-server/#devserverstats-)", |
|
0 commit comments