webpack-dev-server 3.10.0 → 3.11.0
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 +43 -0
- package/client/clients/BaseClient.js +1 -3
- package/client/clients/SockJSClient.js +13 -9
- package/client/clients/WebsocketClient.js +13 -9
- package/client/index.bundle.js +1 -2
- package/client/live.bundle.js +25 -2
- package/client/sockjs.bundle.js +1 -2
- package/client/utils/createSocketUrl.js +1 -1
- package/lib/Server.js +43 -7
- package/lib/options.json +17 -3
- package/lib/servers/WebsocketServer.js +17 -0
- package/lib/utils/addEntries.js +8 -1
- package/lib/utils/routes.js +10 -1
- package/lib/utils/runOpen.js +3 -0
- package/lib/utils/setupExitSignals.js +1 -1
- package/package.json +37 -32
- package/client/index.bundle.js.LICENSE +0 -1
- package/client/live.bundle.js.LICENSE +0 -24
- package/client/sockjs.bundle.js.LICENSE +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webpack-dev-server",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "Serves a webpack app. Updates the browser on changes.",
|
|
5
5
|
"bin": "bin/webpack-dev-server.js",
|
|
6
6
|
"main": "lib/Server.js",
|
|
@@ -44,78 +44,83 @@
|
|
|
44
44
|
"debug": "^4.1.1",
|
|
45
45
|
"del": "^4.1.1",
|
|
46
46
|
"express": "^4.17.1",
|
|
47
|
-
"html-entities": "^1.
|
|
47
|
+
"html-entities": "^1.3.1",
|
|
48
48
|
"http-proxy-middleware": "0.19.1",
|
|
49
49
|
"import-local": "^2.0.0",
|
|
50
50
|
"internal-ip": "^4.3.0",
|
|
51
51
|
"ip": "^1.1.5",
|
|
52
52
|
"is-absolute-url": "^3.0.3",
|
|
53
53
|
"killable": "^1.0.1",
|
|
54
|
-
"loglevel": "^1.6.
|
|
54
|
+
"loglevel": "^1.6.8",
|
|
55
55
|
"opn": "^5.5.0",
|
|
56
56
|
"p-retry": "^3.0.1",
|
|
57
|
-
"portfinder": "^1.0.
|
|
57
|
+
"portfinder": "^1.0.26",
|
|
58
58
|
"schema-utils": "^1.0.0",
|
|
59
59
|
"selfsigned": "^1.10.7",
|
|
60
60
|
"semver": "^6.3.0",
|
|
61
61
|
"serve-index": "^1.9.1",
|
|
62
|
-
"sockjs": "0.3.
|
|
62
|
+
"sockjs": "0.3.20",
|
|
63
63
|
"sockjs-client": "1.4.0",
|
|
64
|
-
"spdy": "^4.0.
|
|
64
|
+
"spdy": "^4.0.2",
|
|
65
65
|
"strip-ansi": "^3.0.1",
|
|
66
66
|
"supports-color": "^6.1.0",
|
|
67
67
|
"url": "^0.11.0",
|
|
68
68
|
"webpack-dev-middleware": "^3.7.2",
|
|
69
69
|
"webpack-log": "^2.0.0",
|
|
70
70
|
"ws": "^6.2.1",
|
|
71
|
-
"yargs": "
|
|
71
|
+
"yargs": "^13.3.2"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@babel/cli": "^7.
|
|
75
|
-
"@babel/core": "^7.
|
|
76
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
77
|
-
"@babel/preset-env": "^7.
|
|
78
|
-
"@babel/runtime": "^7.
|
|
79
|
-
"@commitlint/cli": "^8.
|
|
80
|
-
"@commitlint/config-conventional": "^8.
|
|
81
|
-
"babel-loader": "^8.0
|
|
74
|
+
"@babel/cli": "^7.8.4",
|
|
75
|
+
"@babel/core": "^7.9.6",
|
|
76
|
+
"@babel/plugin-transform-runtime": "^7.9.6",
|
|
77
|
+
"@babel/preset-env": "^7.9.6",
|
|
78
|
+
"@babel/runtime": "^7.9.6",
|
|
79
|
+
"@commitlint/cli": "^8.3.5",
|
|
80
|
+
"@commitlint/config-conventional": "^8.3.4",
|
|
81
|
+
"babel-loader": "^8.1.0",
|
|
82
82
|
"body-parser": "^1.19.0",
|
|
83
|
-
"commitlint-azure-pipelines-cli": "^1.0.
|
|
83
|
+
"commitlint-azure-pipelines-cli": "^1.0.3",
|
|
84
84
|
"copy-webpack-plugin": "^5.1.1",
|
|
85
85
|
"css-loader": "^2.1.1",
|
|
86
|
-
"eslint": "^6.
|
|
87
|
-
"eslint-config-prettier": "^6.
|
|
86
|
+
"eslint": "^6.8.0",
|
|
87
|
+
"eslint-config-prettier": "^6.11.0",
|
|
88
88
|
"eslint-config-webpack": "^1.2.5",
|
|
89
|
-
"eslint-plugin-import": "^2.
|
|
89
|
+
"eslint-plugin-import": "^2.20.2",
|
|
90
90
|
"execa": "^1.0.0",
|
|
91
|
-
"file-loader": "^5.0
|
|
91
|
+
"file-loader": "^5.1.0",
|
|
92
92
|
"html-loader": "^0.5.5",
|
|
93
93
|
"html-webpack-plugin": "^3.2.0",
|
|
94
|
-
"husky": "^
|
|
94
|
+
"husky": "^4.2.5",
|
|
95
95
|
"jest": "^24.9.0",
|
|
96
96
|
"jest-junit": "^10.0.0",
|
|
97
|
-
"jquery": "^3.
|
|
98
|
-
"less": "^3.
|
|
97
|
+
"jquery": "^3.5.1",
|
|
98
|
+
"less": "^3.11.1",
|
|
99
99
|
"less-loader": "^5.0.0",
|
|
100
|
-
"lint-staged": "^
|
|
101
|
-
"marked": "^0.8.
|
|
102
|
-
"memfs": "^3.
|
|
100
|
+
"lint-staged": "^10.2.2",
|
|
101
|
+
"marked": "^0.8.2",
|
|
102
|
+
"memfs": "^3.1.2",
|
|
103
103
|
"npm-run-all": "^4.1.5",
|
|
104
104
|
"prettier": "^1.19.1",
|
|
105
105
|
"puppeteer": "^1.20.0",
|
|
106
|
-
"rimraf": "^3.0.
|
|
107
|
-
"standard-version": "^
|
|
108
|
-
"style-loader": "^1.
|
|
106
|
+
"rimraf": "^3.0.2",
|
|
107
|
+
"standard-version": "^8.0.0",
|
|
108
|
+
"style-loader": "^1.2.1",
|
|
109
109
|
"supertest": "^4.0.2",
|
|
110
110
|
"tcp-port-used": "^1.0.1",
|
|
111
|
-
"typescript": "^3.
|
|
111
|
+
"typescript": "^3.8.3",
|
|
112
112
|
"url-loader": "^3.0.0",
|
|
113
|
-
"webpack": "^4.
|
|
114
|
-
"webpack-cli": "^3.3.
|
|
113
|
+
"webpack": "^4.43.0",
|
|
114
|
+
"webpack-cli": "^3.3.11"
|
|
115
115
|
},
|
|
116
116
|
"peerDependencies": {
|
|
117
117
|
"webpack": "^4.0.0 || ^5.0.0"
|
|
118
118
|
},
|
|
119
|
+
"peerDependenciesMeta": {
|
|
120
|
+
"webpack-cli": {
|
|
121
|
+
"optional": true
|
|
122
|
+
}
|
|
123
|
+
},
|
|
119
124
|
"author": "Tobias Koppers @sokra",
|
|
120
125
|
"bugs": "https://github.com/webpack/webpack-dev-server/issues",
|
|
121
126
|
"homepage": "https://github.com/webpack/webpack-dev-server#readme",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! https://mths.be/punycode v1.3.2 by @mathias */
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* jQuery JavaScript Library v3.4.1
|
|
3
|
-
* https://jquery.com/
|
|
4
|
-
*
|
|
5
|
-
* Includes Sizzle.js
|
|
6
|
-
* https://sizzlejs.com/
|
|
7
|
-
*
|
|
8
|
-
* Copyright JS Foundation and other contributors
|
|
9
|
-
* Released under the MIT license
|
|
10
|
-
* https://jquery.org/license
|
|
11
|
-
*
|
|
12
|
-
* Date: 2019-05-01T21:04Z
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
/*!
|
|
16
|
-
* Sizzle CSS Selector Engine v2.3.4
|
|
17
|
-
* https://sizzlejs.com/
|
|
18
|
-
*
|
|
19
|
-
* Copyright JS Foundation and other contributors
|
|
20
|
-
* Released under the MIT license
|
|
21
|
-
* https://js.foundation/
|
|
22
|
-
*
|
|
23
|
-
* Date: 2019-04-08
|
|
24
|
-
*/
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! JSON v3.3.2 | https://bestiejs.github.io/json3 | Copyright 2012-2015, Kit Cambridge, Benjamin Tan | http://kit.mit-license.org */
|