webpack-dev-server 4.7.3 → 4.8.1

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.
@@ -1,7 +1,7 @@
1
1
  export = WebsocketServer;
2
2
  declare class WebsocketServer extends BaseServer {
3
3
  static heartbeatInterval: number;
4
- implementation: WebSocket.Server;
4
+ implementation: WebSocket.Server<WebSocket.WebSocket>;
5
5
  }
6
6
  declare namespace WebsocketServer {
7
7
  export { WebSocketServerConfiguration, ClientConnection };
@@ -1,119 +0,0 @@
1
- /******/ (function() { // webpackBootstrap
2
- /******/ "use strict";
3
- /******/ var __webpack_modules__ = ({
4
-
5
- /***/ "./node_modules/strip-ansi/index.js":
6
- /*!******************************************!*\
7
- !*** ./node_modules/strip-ansi/index.js ***!
8
- \******************************************/
9
- /***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
10
-
11
- __webpack_require__.r(__webpack_exports__);
12
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13
- /* harmony export */ "default": function() { return /* binding */ stripAnsi; }
14
- /* harmony export */ });
15
- /* harmony import */ var ansi_regex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ansi-regex */ "./node_modules/strip-ansi/node_modules/ansi-regex/index.js");
16
-
17
- function stripAnsi(string) {
18
- if (typeof string !== 'string') {
19
- throw new TypeError("Expected a `string`, got `".concat(typeof string, "`"));
20
- }
21
-
22
- return string.replace((0,ansi_regex__WEBPACK_IMPORTED_MODULE_0__["default"])(), '');
23
- }
24
-
25
- /***/ }),
26
-
27
- /***/ "./node_modules/strip-ansi/node_modules/ansi-regex/index.js":
28
- /*!******************************************************************!*\
29
- !*** ./node_modules/strip-ansi/node_modules/ansi-regex/index.js ***!
30
- \******************************************************************/
31
- /***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
32
-
33
- __webpack_require__.r(__webpack_exports__);
34
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
35
- /* harmony export */ "default": function() { return /* binding */ ansiRegex; }
36
- /* harmony export */ });
37
- function ansiRegex() {
38
- var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
39
- _ref$onlyFirst = _ref.onlyFirst,
40
- onlyFirst = _ref$onlyFirst === void 0 ? false : _ref$onlyFirst;
41
-
42
- var pattern = ["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)", '(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))'].join('|');
43
- return new RegExp(pattern, onlyFirst ? undefined : 'g');
44
- }
45
-
46
- /***/ })
47
-
48
- /******/ });
49
- /************************************************************************/
50
- /******/ // The module cache
51
- /******/ var __webpack_module_cache__ = {};
52
- /******/
53
- /******/ // The require function
54
- /******/ function __webpack_require__(moduleId) {
55
- /******/ // Check if module is in cache
56
- /******/ var cachedModule = __webpack_module_cache__[moduleId];
57
- /******/ if (cachedModule !== undefined) {
58
- /******/ return cachedModule.exports;
59
- /******/ }
60
- /******/ // Create a new module (and put it into the cache)
61
- /******/ var module = __webpack_module_cache__[moduleId] = {
62
- /******/ // no module.id needed
63
- /******/ // no module.loaded needed
64
- /******/ exports: {}
65
- /******/ };
66
- /******/
67
- /******/ // Execute the module function
68
- /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
69
- /******/
70
- /******/ // Return the exports of the module
71
- /******/ return module.exports;
72
- /******/ }
73
- /******/
74
- /************************************************************************/
75
- /******/ /* webpack/runtime/define property getters */
76
- /******/ !function() {
77
- /******/ // define getter functions for harmony exports
78
- /******/ __webpack_require__.d = function(exports, definition) {
79
- /******/ for(var key in definition) {
80
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
81
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
82
- /******/ }
83
- /******/ }
84
- /******/ };
85
- /******/ }();
86
- /******/
87
- /******/ /* webpack/runtime/hasOwnProperty shorthand */
88
- /******/ !function() {
89
- /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
90
- /******/ }();
91
- /******/
92
- /******/ /* webpack/runtime/make namespace object */
93
- /******/ !function() {
94
- /******/ // define __esModule on exports
95
- /******/ __webpack_require__.r = function(exports) {
96
- /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
97
- /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
98
- /******/ }
99
- /******/ Object.defineProperty(exports, '__esModule', { value: true });
100
- /******/ };
101
- /******/ }();
102
- /******/
103
- /************************************************************************/
104
- var __webpack_exports__ = {};
105
- // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
106
- !function() {
107
- /*!************************************************!*\
108
- !*** ./client-src/modules/strip-ansi/index.js ***!
109
- \************************************************/
110
- __webpack_require__.r(__webpack_exports__);
111
- /* harmony import */ var strip_ansi__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! strip-ansi */ "./node_modules/strip-ansi/index.js");
112
-
113
- /* harmony default export */ __webpack_exports__["default"] = (strip_ansi__WEBPACK_IMPORTED_MODULE_0__["default"]);
114
- }();
115
- var __webpack_export_target__ = exports;
116
- for(var i in __webpack_exports__) __webpack_export_target__[i] = __webpack_exports__[i];
117
- if(__webpack_exports__.__esModule) Object.defineProperty(__webpack_export_target__, "__esModule", { value: true });
118
- /******/ })()
119
- ;