webpack-dev-server 3.11.1 → 3.11.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/CHANGELOG.md +7 -0
- package/bin/cli-flags.js +0 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [3.11.2](https://github.com/webpack/webpack-dev-server/compare/v3.11.1...v3.11.2) (2021-01-13)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* cli arguments for `serve` command ([a5fe337](https://github.com/webpack/webpack-dev-server/commit/a5fe3372e306e3c90a5e63e452e3e9ee9a745875))
|
|
11
|
+
|
|
5
12
|
### [3.11.1](https://github.com/webpack/webpack-dev-server/compare/v3.11.0...v3.11.1) (2020-12-29)
|
|
6
13
|
|
|
7
14
|
|
package/bin/cli-flags.js
CHANGED
|
@@ -22,19 +22,16 @@ module.exports = {
|
|
|
22
22
|
{
|
|
23
23
|
name: 'liveReload',
|
|
24
24
|
type: Boolean,
|
|
25
|
-
defaultValue: true,
|
|
26
25
|
describe: 'Enables/Disables live reloading on changing files',
|
|
27
26
|
},
|
|
28
27
|
{
|
|
29
28
|
name: 'serveIndex',
|
|
30
29
|
type: Boolean,
|
|
31
30
|
describe: 'Enables/Disables serveIndex middleware',
|
|
32
|
-
defaultValue: true,
|
|
33
31
|
},
|
|
34
32
|
{
|
|
35
33
|
name: 'inline',
|
|
36
34
|
type: Boolean,
|
|
37
|
-
defaultValue: true,
|
|
38
35
|
describe:
|
|
39
36
|
'Inline mode (set to false to disable including client scripts like livereload)',
|
|
40
37
|
},
|
|
@@ -80,7 +77,6 @@ module.exports = {
|
|
|
80
77
|
name: 'client-log-level',
|
|
81
78
|
type: String,
|
|
82
79
|
group: DISPLAY_GROUP,
|
|
83
|
-
defaultValue: 'info',
|
|
84
80
|
describe:
|
|
85
81
|
'Log level in the browser (trace, debug, info, warn, error or silent)',
|
|
86
82
|
},
|