Deployed the page to Github Pages.
This commit is contained in:
parent
1d79754e93
commit
2c89899458
62797 changed files with 6551425 additions and 15279 deletions
20
node_modules/webpack-dev-server/LICENSE
generated
vendored
Normal file
20
node_modules/webpack-dev-server/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
Copyright JS Foundation and other contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
326
node_modules/webpack-dev-server/README.md
generated
vendored
Normal file
326
node_modules/webpack-dev-server/README.md
generated
vendored
Normal file
|
@ -0,0 +1,326 @@
|
|||
<div align="center">
|
||||
<a href="https://github.com/webpack/webpack">
|
||||
<img width="200" height="200" src="https://webpack.js.org/assets/icon-square-big.svg">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
[![npm][npm]][npm-url]
|
||||
[![node][node]][node-url]
|
||||
[![tests][tests]][tests-url]
|
||||
[![coverage][cover]][cover-url]
|
||||
[![discussion][discussion]][discussion-url]
|
||||
[![downloads][downloads]][npm-url]
|
||||
[![contributors][contributors]][contributors-url]
|
||||
|
||||
# webpack-dev-server
|
||||
|
||||
Use [webpack](https://webpack.js.org) with a development server that provides
|
||||
live reloading. This should be used for **development only**.
|
||||
|
||||
It uses [webpack-dev-middleware][middleware-url] under the hood, which provides
|
||||
fast in-memory access to the webpack assets.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
- [Getting Started](#getting-started)
|
||||
- [Usage](#usage)
|
||||
- [With the CLI](#with-the-cli)
|
||||
- [With NPM Scripts](#with-npm-scripts)
|
||||
- [With the API](#with-the-api)
|
||||
- [With TypeScript](#with-typescript)
|
||||
- [The Result](#the-result)
|
||||
- [Browser Support](#browser-support)
|
||||
- [Support](#support)
|
||||
- [Contributing](#contributing)
|
||||
- [Attribution](#attribution)
|
||||
- [License](#license)
|
||||
|
||||
## Getting Started
|
||||
|
||||
First things first, install the module:
|
||||
|
||||
```console
|
||||
npm install webpack-dev-server --save-dev
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```console
|
||||
yarn add -D webpack-dev-server
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```console
|
||||
pnpm add -D webpack-dev-server
|
||||
```
|
||||
|
||||
_Note: While you can install and run webpack-dev-server globally, we recommend
|
||||
installing it locally. webpack-dev-server will always use a local installation
|
||||
over a global one._
|
||||
|
||||
## Usage
|
||||
|
||||
There are two main, recommended methods of using the module:
|
||||
|
||||
### With the CLI
|
||||
|
||||
The easiest way to use it is with the [webpack CLI](https://webpack.js.org/api/cli/). In the directory where your
|
||||
`webpack.config.js` is, run:
|
||||
|
||||
```console
|
||||
npx webpack serve
|
||||
```
|
||||
|
||||
Following options are available with `webpack serve`:
|
||||
|
||||
```
|
||||
Usage: webpack serve|server|s [entries...] [options]
|
||||
|
||||
Run the webpack dev server.
|
||||
|
||||
Options:
|
||||
-c, --config <value...> Provide path to a webpack configuration file e.g. ./webpack.config.js.
|
||||
--config-name <value...> Name of the configuration to use.
|
||||
-m, --merge Merge two or more configurations using 'webpack-merge'.
|
||||
--disable-interpret Disable interpret for loading the config file.
|
||||
--env <value...> Environment passed to the configuration when it is a function.
|
||||
--node-env <value> Sets process.env.NODE_ENV to the specified value.
|
||||
--define-process-env-node-env <value> Sets process.env.NODE_ENV to the specified value. (Currently an alias for `--node-env`)
|
||||
--analyze It invokes webpack-bundle-analyzer plugin to get bundle information.
|
||||
--progress [value] Print compilation progress during build.
|
||||
-j, --json [value] Prints result as JSON or store it in a file.
|
||||
--fail-on-warnings Stop webpack-cli process with non-zero exit code on warnings from webpack
|
||||
-d, --devtool <value> A developer tool to enhance debugging (false | eval | [inline-|hidden-|eval-][nosources-][cheap-[module-]]source-map).
|
||||
--no-devtool Negative 'devtool' option.
|
||||
--entry <value...> A module that is loaded upon startup. Only the last one is exported.
|
||||
--mode <value> Enable production optimizations or development hints.
|
||||
--name <value> Name of the configuration. Used when loading multiple configurations.
|
||||
-o, --output-path <value> The output directory as **absolute path** (required).
|
||||
--stats [value] Stats options object or preset name.
|
||||
--no-stats Negative 'stats' option.
|
||||
-t, --target <value...> Environment to build for. Environment to build for. An array of environments to build for all of them when possible.
|
||||
--no-target Negative 'target' option.
|
||||
--watch-options-stdin Stop watching when stdin stream has ended.
|
||||
--no-watch-options-stdin Negative 'watch-options-stdin' option.
|
||||
--allowed-hosts <value...> Allows to enumerate the hosts from which access to the dev server are allowed (useful when you are proxying dev server, by default is 'auto').
|
||||
--allowed-hosts-reset Clear all items provided in 'allowedHosts' configuration. Allows to enumerate the hosts from which access to the dev server are allowed (useful when you are proxying dev server, by default is 'auto').
|
||||
--bonjour Allows to broadcasts dev server via ZeroConf networking on start.
|
||||
--no-bonjour Disallows to broadcasts dev server via ZeroConf networking on start.
|
||||
--no-client Disables client script.
|
||||
--client-logging <value> Allows to set log level in the browser.
|
||||
--client-overlay Enables a full-screen overlay in the browser when there are compiler errors or warnings.
|
||||
--no-client-overlay Disables the full-screen overlay in the browser when there are compiler errors or warnings.
|
||||
--client-overlay-errors Enables a full-screen overlay in the browser when there are compiler errors.
|
||||
--no-client-overlay-errors Disables the full-screen overlay in the browser when there are compiler errors.
|
||||
--client-overlay-warnings Enables a full-screen overlay in the browser when there are compiler warnings.
|
||||
--no-client-overlay-warnings Disables the full-screen overlay in the browser when there are compiler warnings.
|
||||
--client-overlay-runtime-errors Enables a full-screen overlay in the browser when there are uncaught runtime errors.
|
||||
--no-client-overlay-runtime-errors Disables the full-screen overlay in the browser when there are uncaught runtime errors.
|
||||
--client-overlay-trusted-types-policy-name <value> The name of a Trusted Types policy for the overlay. Defaults to 'webpack-dev-server#overlay'.
|
||||
--client-progress Prints compilation progress in percentage in the browser.
|
||||
--no-client-progress Does not print compilation progress in percentage in the browser.
|
||||
--client-reconnect [value] Tells dev-server the number of times it should try to reconnect the client.
|
||||
--no-client-reconnect Tells dev-server to not to try to reconnect the client.
|
||||
--client-web-socket-transport <value> Allows to set custom web socket transport to communicate with dev server.
|
||||
--client-web-socket-url <value> Allows to specify URL to web socket server (useful when you're proxying dev server and client script does not always know where to connect to).
|
||||
--client-web-socket-url-hostname <value> Tells clients connected to devServer to use the provided hostname.
|
||||
--client-web-socket-url-pathname <value> Tells clients connected to devServer to use the provided path to connect.
|
||||
--client-web-socket-url-password <value> Tells clients connected to devServer to use the provided password to authenticate.
|
||||
--client-web-socket-url-port <value> Tells clients connected to devServer to use the provided port.
|
||||
--client-web-socket-url-protocol <value> Tells clients connected to devServer to use the provided protocol.
|
||||
--client-web-socket-url-username <value> Tells clients connected to devServer to use the provided username to authenticate.
|
||||
--compress Enables gzip compression for everything served.
|
||||
--no-compress Disables gzip compression for everything served.
|
||||
--history-api-fallback Allows to proxy requests through a specified index page (by default 'index.html'), useful for Single Page Applications that utilise the HTML5 History API.
|
||||
--no-history-api-fallback Disallows to proxy requests through a specified index page.
|
||||
--host <value> Allows to specify a hostname to use.
|
||||
--hot [value] Enables Hot Module Replacement.
|
||||
--no-hot Disables Hot Module Replacement.
|
||||
--ipc [value] Listen to a unix socket.
|
||||
--live-reload Enables reload/refresh the page(s) when file changes are detected (enabled by default).
|
||||
--no-live-reload Disables reload/refresh the page(s) when file changes are detected (enabled by default).
|
||||
--open [value...] Allows to configure dev server to open the browser(s) and page(s) after server had been started (set it to true to open your default browser).
|
||||
--no-open Does not open the default browser.
|
||||
--open-target <value...> Opens specified page in browser.
|
||||
--open-app-name <value...> Open specified browser.
|
||||
--open-reset Clear all items provided in 'open' configuration. Allows to configure dev server to open the browser(s) and page(s) after server had been started (set it to true to open your default browser).
|
||||
--open-target-reset Clear all items provided in 'open.target' configuration. Opens specified page in browser.
|
||||
--open-app-name-reset Clear all items provided in 'open.app.name' configuration. Open specified browser.
|
||||
--port <value> Allows to specify a port to use.
|
||||
--server-type <value> Allows to set server and options (by default 'http').
|
||||
--server-options-passphrase <value> Passphrase for a pfx file.
|
||||
--server-options-request-cert Request for an SSL certificate.
|
||||
--no-server-options-request-cert Does not request for an SSL certificate.
|
||||
--server-options-ca <value...> Path to an SSL CA certificate or content of an SSL CA certificate.
|
||||
--server-options-ca-reset Clear all items provided in 'server.options.ca' configuration. Path to an SSL CA certificate or content of an SSL CA certificate.
|
||||
--server-options-cert <value...> Path to an SSL certificate or content of an SSL certificate.
|
||||
--server-options-cert-reset Clear all items provided in 'server.options.cert' configuration. Path to an SSL certificate or content of an SSL certificate.
|
||||
--server-options-crl <value...> Path to PEM formatted CRLs (Certificate Revocation Lists) or content of PEM formatted CRLs (Certificate Revocation Lists).
|
||||
--server-options-crl-reset Clear all items provided in 'server.options.crl' configuration. Path to PEM formatted CRLs (Certificate Revocation Lists) or content of PEM formatted CRLs (Certificate Revocation Lists).
|
||||
--server-options-key <value...> Path to an SSL key or content of an SSL key.
|
||||
--server-options-key-reset Clear all items provided in 'server.options.key' configuration. Path to an SSL key or content of an SSL key.
|
||||
--server-options-pfx <value...> Path to an SSL pfx file or content of an SSL pfx file.
|
||||
--server-options-pfx-reset Clear all items provided in 'server.options.pfx' configuration. Path to an SSL pfx file or content of an SSL pfx file.
|
||||
--static [value...] Allows to configure options for serving static files from directory (by default 'public' directory).
|
||||
--no-static Disallows to configure options for serving static files from directory.
|
||||
--static-directory <value...> Directory for static contents.
|
||||
--static-public-path <value...> The static files will be available in the browser under this public path.
|
||||
--static-serve-index Tells dev server to use serveIndex middleware when enabled.
|
||||
--no-static-serve-index Does not tell dev server to use serveIndex middleware.
|
||||
--static-watch Watches for files in static content directory.
|
||||
--no-static-watch Does not watch for files in static content directory.
|
||||
--static-reset Clear all items provided in 'static' configuration. Allows to configure options for serving static files from directory (by default 'public' directory).
|
||||
--static-public-path-reset Clear all items provided in 'static.publicPath' configuration. The static files will be available in the browser under this public path.
|
||||
--watch-files <value...> Allows to configure list of globs/directories/files to watch for file changes.
|
||||
--watch-files-reset Clear all items provided in 'watchFiles' configuration. Allows to configure list of globs/directories/files to watch for file changes.
|
||||
--no-web-socket-server Disallows to set web socket server and options.
|
||||
--web-socket-server-type <value> Allows to set web socket server and options (by default 'ws').
|
||||
|
||||
Global options:
|
||||
--color Enable colors on console.
|
||||
--no-color Disable colors on console.
|
||||
-v, --version Output the version number of 'webpack', 'webpack-cli' and 'webpack-dev-server' and commands.
|
||||
-h, --help [verbose] Display help for commands and options.
|
||||
|
||||
To see list of all supported commands and options run 'webpack --help=verbose'.
|
||||
|
||||
Webpack documentation: https://webpack.js.org/.
|
||||
CLI documentation: https://webpack.js.org/api/cli/.
|
||||
Made with ♥ by the webpack team.
|
||||
```
|
||||
|
||||
> **Note**
|
||||
>
|
||||
> _Detailed documentation for above options is available on this [link](https://webpack.js.org/configuration/dev-server/)._
|
||||
|
||||
### With NPM Scripts
|
||||
|
||||
NPM package.json scripts are a convenient and useful means to run locally installed
|
||||
binaries without having to be concerned about their full paths. Simply define a
|
||||
script as such:
|
||||
|
||||
```json
|
||||
{
|
||||
"scripts": {
|
||||
"serve": "webpack serve"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
And run the following in your terminal/console:
|
||||
|
||||
```console
|
||||
npm run serve
|
||||
```
|
||||
|
||||
NPM will automatically refer to the the binary in `node_modules` for you, and
|
||||
execute the file or command.
|
||||
|
||||
### With the API
|
||||
|
||||
While it's recommended to run webpack-dev-server via the CLI, you may also choose to start a server via the API.
|
||||
|
||||
See the related [API documentation for `webpack-dev-server`](https://webpack.js.org/api/webpack-dev-server/).
|
||||
|
||||
### With TypeScript
|
||||
|
||||
If you use TypeScript in the webpack config, you'll need to properly type `devServer` property in order to avoid TS errors (e.g. `'devServer' does not exist in type 'Configuration'`). For that use either:
|
||||
|
||||
```ts
|
||||
/// <reference path="node_modules/webpack-dev-server/types/lib/Server.d.ts"/>
|
||||
import type { Configuration } from "webpack";
|
||||
|
||||
// Your logic
|
||||
```
|
||||
|
||||
Or you can import the type from `webpack-dev-server`, i.e.
|
||||
|
||||
```ts
|
||||
import type { Configuration as DevServerConfiguration } from "webpack-dev-server";
|
||||
import type { Configuration } from "webpack";
|
||||
|
||||
const devServer: DevServerConfiguration = {};
|
||||
const config: Configuration = { devServer };
|
||||
|
||||
// module.exports
|
||||
export default config;
|
||||
```
|
||||
|
||||
### The Result
|
||||
|
||||
Either method will start a server instance and begin listening for connections
|
||||
from `localhost` on port `8080`.
|
||||
|
||||
webpack-dev-server is configured by default to support live-reload of files as
|
||||
you edit your assets while the server is running.
|
||||
|
||||
See [**the documentation**][docs-url] for more use cases and options.
|
||||
|
||||
## Browser Support
|
||||
|
||||
While `webpack-dev-server` transpiles the client (browser) scripts to an ES5
|
||||
state, the project only officially supports the _last two versions of major
|
||||
browsers_. We simply don't have the resources to support every whacky
|
||||
browser out there.
|
||||
|
||||
If you find a bug with an obscure / old browser, we would actively welcome a
|
||||
Pull Request to resolve the bug.
|
||||
|
||||
## Support
|
||||
|
||||
We do our best to keep issues in the repository focused on bugs, features, and
|
||||
needed modifications to the code for the module. Because of that, we ask users
|
||||
with general support, "how-to", or "why isn't this working" questions to try one
|
||||
of the other support channels that are available.
|
||||
|
||||
Your first-stop-shop for support for webpack-dev-server should be the excellent
|
||||
[documentation][docs-url] for the module. If you see an opportunity for improvement
|
||||
of those docs, please head over to the [webpack.js.org repo][wjo-url] and open a
|
||||
pull request.
|
||||
|
||||
From there, we encourage users to visit the [webpack discussions][discussion-url] and
|
||||
talk to the fine folks there. If your quest for answers comes up dry in chat,
|
||||
head over to [StackOverflow][stack-url] and do a quick search or open a new
|
||||
question. Remember; It's always much easier to answer questions that include your
|
||||
`webpack.config.js` and relevant files!
|
||||
|
||||
If you're twitter-savvy you can tweet [#webpack][hash-url] with your question
|
||||
and someone should be able to reach out and lend a hand.
|
||||
|
||||
If you have discovered a :bug:, have a feature suggestion, or would like to see
|
||||
a modification, please feel free to create an issue on Github. _Note: The issue
|
||||
template isn't optional, so please be sure not to remove it, and please fill it
|
||||
out completely._
|
||||
|
||||
## Contributing
|
||||
|
||||
We welcome your contributions! Please have a read of [CONTRIBUTING.md](CONTRIBUTING.md) for more information on how to get involved.
|
||||
|
||||
## Attribution
|
||||
|
||||
This project is heavily inspired by [peerigon/nof5](https://github.com/peerigon/nof5).
|
||||
|
||||
## License
|
||||
|
||||
#### [MIT](./LICENSE)
|
||||
|
||||
[npm]: https://img.shields.io/npm/v/webpack-dev-server.svg
|
||||
[npm-url]: https://npmjs.com/package/webpack-dev-server
|
||||
[node]: https://img.shields.io/node/v/webpack-dev-server.svg
|
||||
[node-url]: https://nodejs.org
|
||||
[tests]: https://github.com/webpack/webpack-dev-server/workflows/webpack-dev-server/badge.svg
|
||||
[tests-url]: https://github.com/webpack/webpack-dev-server/actions?query=workflow%3Awebpack-dev-server
|
||||
[cover]: https://codecov.io/gh/webpack/webpack-dev-server/branch/master/graph/badge.svg
|
||||
[cover-url]: https://codecov.io/gh/webpack/webpack-dev-server
|
||||
[discussion]: https://img.shields.io/github/discussions/webpack/webpack
|
||||
[discussion-url]: https://github.com/webpack/webpack/discussions
|
||||
[docs-url]: https://webpack.js.org/configuration/dev-server/#devserver
|
||||
[hash-url]: https://twitter.com/search?q=webpack
|
||||
[middleware-url]: https://github.com/webpack/webpack-dev-middleware
|
||||
[stack-url]: https://stackoverflow.com/questions/tagged/webpack-dev-server
|
||||
[uglify-url]: https://github.com/webpack-contrib/uglifyjs-webpack-plugin
|
||||
[wjo-url]: https://github.com/webpack/webpack.js.org
|
||||
[downloads]: https://img.shields.io/npm/dm/webpack-dev-server.svg
|
||||
[contributors-url]: https://github.com/webpack/webpack-dev-server/graphs/contributors
|
||||
[contributors]: https://img.shields.io/github/contributors/webpack/webpack-dev-server.svg
|
1294
node_modules/webpack-dev-server/bin/cli-flags.js
generated
vendored
Normal file
1294
node_modules/webpack-dev-server/bin/cli-flags.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
199
node_modules/webpack-dev-server/bin/webpack-dev-server.js
generated
vendored
Executable file
199
node_modules/webpack-dev-server/bin/webpack-dev-server.js
generated
vendored
Executable file
|
@ -0,0 +1,199 @@
|
|||
#!/usr/bin/env node
|
||||
/* Based on webpack/bin/webpack.js */
|
||||
/* eslint-disable no-console */
|
||||
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* @param {string} command process to run
|
||||
* @param {string[]} args command line arguments
|
||||
* @returns {Promise<void>} promise
|
||||
*/
|
||||
const runCommand = (command, args) => {
|
||||
const cp = require("child_process");
|
||||
return new Promise((resolve, reject) => {
|
||||
const executedCommand = cp.spawn(command, args, {
|
||||
stdio: "inherit",
|
||||
shell: true,
|
||||
});
|
||||
|
||||
executedCommand.on("error", (error) => {
|
||||
reject(error);
|
||||
});
|
||||
|
||||
executedCommand.on("exit", (code) => {
|
||||
if (code === 0) {
|
||||
resolve();
|
||||
} else {
|
||||
reject();
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {string} packageName name of the package
|
||||
* @returns {boolean} is the package installed?
|
||||
*/
|
||||
const isInstalled = (packageName) => {
|
||||
if (process.versions.pnp) {
|
||||
return true;
|
||||
}
|
||||
|
||||
const path = require("path");
|
||||
const fs = require("graceful-fs");
|
||||
|
||||
let dir = __dirname;
|
||||
|
||||
do {
|
||||
try {
|
||||
if (
|
||||
fs.statSync(path.join(dir, "node_modules", packageName)).isDirectory()
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
} catch (_error) {
|
||||
// Nothing
|
||||
}
|
||||
// eslint-disable-next-line no-cond-assign
|
||||
} while (dir !== (dir = path.dirname(dir)));
|
||||
|
||||
// https://github.com/nodejs/node/blob/v18.9.1/lib/internal/modules/cjs/loader.js#L1274
|
||||
// @ts-ignore
|
||||
for (const internalPath of require("module").globalPaths) {
|
||||
try {
|
||||
if (fs.statSync(path.join(internalPath, packageName)).isDirectory()) {
|
||||
return true;
|
||||
}
|
||||
} catch (_error) {
|
||||
// Nothing
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {CliOption} cli options
|
||||
* @returns {void}
|
||||
*/
|
||||
const runCli = (cli) => {
|
||||
if (cli.preprocess) {
|
||||
cli.preprocess();
|
||||
}
|
||||
const path = require("path");
|
||||
const pkgPath = require.resolve(`${cli.package}/package.json`);
|
||||
// eslint-disable-next-line import/no-dynamic-require
|
||||
const pkg = require(pkgPath);
|
||||
|
||||
if (pkg.type === "module" || /\.mjs/i.test(pkg.bin[cli.binName])) {
|
||||
import(path.resolve(path.dirname(pkgPath), pkg.bin[cli.binName])).catch(
|
||||
(error) => {
|
||||
console.error(error);
|
||||
process.exitCode = 1;
|
||||
},
|
||||
);
|
||||
} else {
|
||||
// eslint-disable-next-line import/no-dynamic-require
|
||||
require(path.resolve(path.dirname(pkgPath), pkg.bin[cli.binName]));
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @typedef {Object} CliOption
|
||||
* @property {string} name display name
|
||||
* @property {string} package npm package name
|
||||
* @property {string} binName name of the executable file
|
||||
* @property {boolean} installed currently installed?
|
||||
* @property {string} url homepage
|
||||
* @property {function} preprocess preprocessor
|
||||
*/
|
||||
|
||||
/** @type {CliOption} */
|
||||
const cli = {
|
||||
name: "webpack-cli",
|
||||
package: "webpack-cli",
|
||||
binName: "webpack-cli",
|
||||
installed: isInstalled("webpack-cli"),
|
||||
url: "https://github.com/webpack/webpack-cli",
|
||||
preprocess() {
|
||||
process.argv.splice(2, 0, "serve");
|
||||
},
|
||||
};
|
||||
|
||||
if (!cli.installed) {
|
||||
const path = require("path");
|
||||
const fs = require("graceful-fs");
|
||||
const readLine = require("readline");
|
||||
|
||||
const notify = `CLI for webpack must be installed.\n ${cli.name} (${cli.url})\n`;
|
||||
|
||||
console.error(notify);
|
||||
|
||||
/**
|
||||
* @type {string}
|
||||
*/
|
||||
let packageManager;
|
||||
|
||||
if (fs.existsSync(path.resolve(process.cwd(), "yarn.lock"))) {
|
||||
packageManager = "yarn";
|
||||
} else if (fs.existsSync(path.resolve(process.cwd(), "pnpm-lock.yaml"))) {
|
||||
packageManager = "pnpm";
|
||||
} else {
|
||||
packageManager = "npm";
|
||||
}
|
||||
|
||||
const installOptions = [packageManager === "yarn" ? "add" : "install", "-D"];
|
||||
|
||||
console.error(
|
||||
`We will use "${packageManager}" to install the CLI via "${packageManager} ${installOptions.join(
|
||||
" ",
|
||||
)} ${cli.package}".`,
|
||||
);
|
||||
|
||||
const question = `Do you want to install 'webpack-cli' (yes/no): `;
|
||||
|
||||
const questionInterface = readLine.createInterface({
|
||||
input: process.stdin,
|
||||
output: process.stderr,
|
||||
});
|
||||
|
||||
// In certain scenarios (e.g. when STDIN is not in terminal mode), the callback function will not be
|
||||
// executed. Setting the exit code here to ensure the script exits correctly in those cases. The callback
|
||||
// function is responsible for clearing the exit code if the user wishes to install webpack-cli.
|
||||
process.exitCode = 1;
|
||||
questionInterface.question(question, (answer) => {
|
||||
questionInterface.close();
|
||||
|
||||
const normalizedAnswer = answer.toLowerCase().startsWith("y");
|
||||
|
||||
if (!normalizedAnswer) {
|
||||
console.error(
|
||||
"You need to install 'webpack-cli' to use webpack via CLI.\n" +
|
||||
"You can also install the CLI manually.",
|
||||
);
|
||||
|
||||
return;
|
||||
}
|
||||
process.exitCode = 0;
|
||||
|
||||
console.log(
|
||||
`Installing '${
|
||||
cli.package
|
||||
}' (running '${packageManager} ${installOptions.join(" ")} ${
|
||||
cli.package
|
||||
}')...`,
|
||||
);
|
||||
|
||||
runCommand(packageManager, installOptions.concat(cli.package))
|
||||
.then(() => {
|
||||
runCli(cli);
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error(error);
|
||||
process.exitCode = 1;
|
||||
});
|
||||
});
|
||||
} else {
|
||||
runCli(cli);
|
||||
}
|
60
node_modules/webpack-dev-server/client/clients/SockJSClient.js
generated
vendored
Normal file
60
node_modules/webpack-dev-server/client/clients/SockJSClient.js
generated
vendored
Normal file
|
@ -0,0 +1,60 @@
|
|||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
||||
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
||||
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||
import SockJS from "../modules/sockjs-client/index.js";
|
||||
import { log } from "../utils/log.js";
|
||||
var SockJSClient = /*#__PURE__*/function () {
|
||||
/**
|
||||
* @param {string} url
|
||||
*/
|
||||
function SockJSClient(url) {
|
||||
_classCallCheck(this, SockJSClient);
|
||||
// SockJS requires `http` and `https` protocols
|
||||
this.sock = new SockJS(url.replace(/^ws:/i, "http:").replace(/^wss:/i, "https:"));
|
||||
this.sock.onerror =
|
||||
/**
|
||||
* @param {Error} error
|
||||
*/
|
||||
function (error) {
|
||||
log.error(error);
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {(...args: any[]) => void} f
|
||||
*/
|
||||
return _createClass(SockJSClient, [{
|
||||
key: "onOpen",
|
||||
value: function onOpen(f) {
|
||||
this.sock.onopen = f;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {(...args: any[]) => void} f
|
||||
*/
|
||||
}, {
|
||||
key: "onClose",
|
||||
value: function onClose(f) {
|
||||
this.sock.onclose = f;
|
||||
}
|
||||
|
||||
// call f with the message string as the first argument
|
||||
/**
|
||||
* @param {(...args: any[]) => void} f
|
||||
*/
|
||||
}, {
|
||||
key: "onMessage",
|
||||
value: function onMessage(f) {
|
||||
this.sock.onmessage =
|
||||
/**
|
||||
* @param {Error & { data: string }} e
|
||||
*/
|
||||
function (e) {
|
||||
f(e.data);
|
||||
};
|
||||
}
|
||||
}]);
|
||||
}();
|
||||
export { SockJSClient as default };
|
311
node_modules/webpack-dev-server/client/index.js
generated
vendored
Normal file
311
node_modules/webpack-dev-server/client/index.js
generated
vendored
Normal file
|
@ -0,0 +1,311 @@
|
|||
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
||||
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
||||
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
||||
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||
/* global __resourceQuery, __webpack_hash__ */
|
||||
/// <reference types="webpack/module" />
|
||||
import webpackHotLog from "webpack/hot/log.js";
|
||||
import stripAnsi from "./utils/stripAnsi.js";
|
||||
import parseURL from "./utils/parseURL.js";
|
||||
import socket from "./socket.js";
|
||||
import { formatProblem, createOverlay } from "./overlay.js";
|
||||
import { log, logEnabledFeatures, setLogLevel } from "./utils/log.js";
|
||||
import sendMessage from "./utils/sendMessage.js";
|
||||
import reloadApp from "./utils/reloadApp.js";
|
||||
import createSocketURL from "./utils/createSocketURL.js";
|
||||
|
||||
/**
|
||||
* @typedef {Object} OverlayOptions
|
||||
* @property {boolean | (error: Error) => boolean} [warnings]
|
||||
* @property {boolean | (error: Error) => boolean} [errors]
|
||||
* @property {boolean | (error: Error) => boolean} [runtimeErrors]
|
||||
* @property {string} [trustedTypesPolicyName]
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef {Object} Options
|
||||
* @property {boolean} hot
|
||||
* @property {boolean} liveReload
|
||||
* @property {boolean} progress
|
||||
* @property {boolean | OverlayOptions} overlay
|
||||
* @property {string} [logging]
|
||||
* @property {number} [reconnect]
|
||||
*/
|
||||
|
||||
/**
|
||||
* @typedef {Object} Status
|
||||
* @property {boolean} isUnloading
|
||||
* @property {string} currentHash
|
||||
* @property {string} [previousHash]
|
||||
*/
|
||||
|
||||
/**
|
||||
* @param {boolean | { warnings?: boolean | string; errors?: boolean | string; runtimeErrors?: boolean | string; }} overlayOptions
|
||||
*/
|
||||
var decodeOverlayOptions = function decodeOverlayOptions(overlayOptions) {
|
||||
if (typeof overlayOptions === "object") {
|
||||
["warnings", "errors", "runtimeErrors"].forEach(function (property) {
|
||||
if (typeof overlayOptions[property] === "string") {
|
||||
var overlayFilterFunctionString = decodeURIComponent(overlayOptions[property]);
|
||||
|
||||
// eslint-disable-next-line no-new-func
|
||||
var overlayFilterFunction = new Function("message", "var callback = ".concat(overlayFilterFunctionString, "\n return callback(message)"));
|
||||
overlayOptions[property] = overlayFilterFunction;
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @type {Status}
|
||||
*/
|
||||
var status = {
|
||||
isUnloading: false,
|
||||
// eslint-disable-next-line camelcase
|
||||
currentHash: __webpack_hash__
|
||||
};
|
||||
|
||||
/** @type {Options} */
|
||||
var options = {
|
||||
hot: false,
|
||||
liveReload: false,
|
||||
progress: false,
|
||||
overlay: false
|
||||
};
|
||||
var parsedResourceQuery = parseURL(__resourceQuery);
|
||||
var enabledFeatures = {
|
||||
"Hot Module Replacement": false,
|
||||
"Live Reloading": false,
|
||||
Progress: false,
|
||||
Overlay: false
|
||||
};
|
||||
if (parsedResourceQuery.hot === "true") {
|
||||
options.hot = true;
|
||||
enabledFeatures["Hot Module Replacement"] = true;
|
||||
}
|
||||
if (parsedResourceQuery["live-reload"] === "true") {
|
||||
options.liveReload = true;
|
||||
enabledFeatures["Live Reloading"] = true;
|
||||
}
|
||||
if (parsedResourceQuery.progress === "true") {
|
||||
options.progress = true;
|
||||
enabledFeatures.Progress = true;
|
||||
}
|
||||
if (parsedResourceQuery.overlay) {
|
||||
try {
|
||||
options.overlay = JSON.parse(parsedResourceQuery.overlay);
|
||||
} catch (e) {
|
||||
log.error("Error parsing overlay options from resource query:", e);
|
||||
}
|
||||
|
||||
// Fill in default "true" params for partially-specified objects.
|
||||
if (typeof options.overlay === "object") {
|
||||
options.overlay = _objectSpread({
|
||||
errors: true,
|
||||
warnings: true,
|
||||
runtimeErrors: true
|
||||
}, options.overlay);
|
||||
decodeOverlayOptions(options.overlay);
|
||||
}
|
||||
enabledFeatures.Overlay = true;
|
||||
}
|
||||
if (parsedResourceQuery.logging) {
|
||||
options.logging = parsedResourceQuery.logging;
|
||||
}
|
||||
if (typeof parsedResourceQuery.reconnect !== "undefined") {
|
||||
options.reconnect = Number(parsedResourceQuery.reconnect);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} level
|
||||
*/
|
||||
function setAllLogLevel(level) {
|
||||
// This is needed because the HMR logger operate separately from dev server logger
|
||||
webpackHotLog.setLogLevel(level === "verbose" || level === "log" ? "info" : level);
|
||||
setLogLevel(level);
|
||||
}
|
||||
if (options.logging) {
|
||||
setAllLogLevel(options.logging);
|
||||
}
|
||||
logEnabledFeatures(enabledFeatures);
|
||||
self.addEventListener("beforeunload", function () {
|
||||
status.isUnloading = true;
|
||||
});
|
||||
var overlay = typeof window !== "undefined" ? createOverlay(typeof options.overlay === "object" ? {
|
||||
trustedTypesPolicyName: options.overlay.trustedTypesPolicyName,
|
||||
catchRuntimeError: options.overlay.runtimeErrors
|
||||
} : {
|
||||
trustedTypesPolicyName: false,
|
||||
catchRuntimeError: options.overlay
|
||||
}) : {
|
||||
send: function send() {}
|
||||
};
|
||||
var onSocketMessage = {
|
||||
hot: function hot() {
|
||||
if (parsedResourceQuery.hot === "false") {
|
||||
return;
|
||||
}
|
||||
options.hot = true;
|
||||
},
|
||||
liveReload: function liveReload() {
|
||||
if (parsedResourceQuery["live-reload"] === "false") {
|
||||
return;
|
||||
}
|
||||
options.liveReload = true;
|
||||
},
|
||||
invalid: function invalid() {
|
||||
log.info("App updated. Recompiling...");
|
||||
|
||||
// Fixes #1042. overlay doesn't clear if errors are fixed but warnings remain.
|
||||
if (options.overlay) {
|
||||
overlay.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
}
|
||||
sendMessage("Invalid");
|
||||
},
|
||||
/**
|
||||
* @param {string} hash
|
||||
*/
|
||||
hash: function hash(_hash) {
|
||||
status.previousHash = status.currentHash;
|
||||
status.currentHash = _hash;
|
||||
},
|
||||
logging: setAllLogLevel,
|
||||
/**
|
||||
* @param {boolean} value
|
||||
*/
|
||||
overlay: function overlay(value) {
|
||||
if (typeof document === "undefined") {
|
||||
return;
|
||||
}
|
||||
options.overlay = value;
|
||||
decodeOverlayOptions(options.overlay);
|
||||
},
|
||||
/**
|
||||
* @param {number} value
|
||||
*/
|
||||
reconnect: function reconnect(value) {
|
||||
if (parsedResourceQuery.reconnect === "false") {
|
||||
return;
|
||||
}
|
||||
options.reconnect = value;
|
||||
},
|
||||
/**
|
||||
* @param {boolean} value
|
||||
*/
|
||||
progress: function progress(value) {
|
||||
options.progress = value;
|
||||
},
|
||||
/**
|
||||
* @param {{ pluginName?: string, percent: number, msg: string }} data
|
||||
*/
|
||||
"progress-update": function progressUpdate(data) {
|
||||
if (options.progress) {
|
||||
log.info("".concat(data.pluginName ? "[".concat(data.pluginName, "] ") : "").concat(data.percent, "% - ").concat(data.msg, "."));
|
||||
}
|
||||
sendMessage("Progress", data);
|
||||
},
|
||||
"still-ok": function stillOk() {
|
||||
log.info("Nothing changed.");
|
||||
if (options.overlay) {
|
||||
overlay.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
}
|
||||
sendMessage("StillOk");
|
||||
},
|
||||
ok: function ok() {
|
||||
sendMessage("Ok");
|
||||
if (options.overlay) {
|
||||
overlay.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
}
|
||||
reloadApp(options, status);
|
||||
},
|
||||
/**
|
||||
* @param {string} file
|
||||
*/
|
||||
"static-changed": function staticChanged(file) {
|
||||
log.info("".concat(file ? "\"".concat(file, "\"") : "Content", " from static directory was changed. Reloading..."));
|
||||
self.location.reload();
|
||||
},
|
||||
/**
|
||||
* @param {Error[]} warnings
|
||||
* @param {any} params
|
||||
*/
|
||||
warnings: function warnings(_warnings, params) {
|
||||
log.warn("Warnings while compiling.");
|
||||
var printableWarnings = _warnings.map(function (error) {
|
||||
var _formatProblem = formatProblem("warning", error),
|
||||
header = _formatProblem.header,
|
||||
body = _formatProblem.body;
|
||||
return "".concat(header, "\n").concat(stripAnsi(body));
|
||||
});
|
||||
sendMessage("Warnings", printableWarnings);
|
||||
for (var i = 0; i < printableWarnings.length; i++) {
|
||||
log.warn(printableWarnings[i]);
|
||||
}
|
||||
var overlayWarningsSetting = typeof options.overlay === "boolean" ? options.overlay : options.overlay && options.overlay.warnings;
|
||||
if (overlayWarningsSetting) {
|
||||
var warningsToDisplay = typeof overlayWarningsSetting === "function" ? _warnings.filter(overlayWarningsSetting) : _warnings;
|
||||
if (warningsToDisplay.length) {
|
||||
overlay.send({
|
||||
type: "BUILD_ERROR",
|
||||
level: "warning",
|
||||
messages: _warnings
|
||||
});
|
||||
}
|
||||
}
|
||||
if (params && params.preventReloading) {
|
||||
return;
|
||||
}
|
||||
reloadApp(options, status);
|
||||
},
|
||||
/**
|
||||
* @param {Error[]} errors
|
||||
*/
|
||||
errors: function errors(_errors) {
|
||||
log.error("Errors while compiling. Reload prevented.");
|
||||
var printableErrors = _errors.map(function (error) {
|
||||
var _formatProblem2 = formatProblem("error", error),
|
||||
header = _formatProblem2.header,
|
||||
body = _formatProblem2.body;
|
||||
return "".concat(header, "\n").concat(stripAnsi(body));
|
||||
});
|
||||
sendMessage("Errors", printableErrors);
|
||||
for (var i = 0; i < printableErrors.length; i++) {
|
||||
log.error(printableErrors[i]);
|
||||
}
|
||||
var overlayErrorsSettings = typeof options.overlay === "boolean" ? options.overlay : options.overlay && options.overlay.errors;
|
||||
if (overlayErrorsSettings) {
|
||||
var errorsToDisplay = typeof overlayErrorsSettings === "function" ? _errors.filter(overlayErrorsSettings) : _errors;
|
||||
if (errorsToDisplay.length) {
|
||||
overlay.send({
|
||||
type: "BUILD_ERROR",
|
||||
level: "error",
|
||||
messages: _errors
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
/**
|
||||
* @param {Error} error
|
||||
*/
|
||||
error: function error(_error) {
|
||||
log.error(_error);
|
||||
},
|
||||
close: function close() {
|
||||
log.info("Disconnected!");
|
||||
if (options.overlay) {
|
||||
overlay.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
}
|
||||
sendMessage("Close");
|
||||
}
|
||||
};
|
||||
var socketURL = createSocketURL(parsedResourceQuery);
|
||||
socket(socketURL, onSocketMessage, options.reconnect);
|
268
node_modules/webpack-dev-server/client/overlay.js
generated
vendored
Normal file
268
node_modules/webpack-dev-server/client/overlay.js
generated
vendored
Normal file
|
@ -0,0 +1,268 @@
|
|||
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
||||
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
||||
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
||||
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||
// The error overlay is inspired (and mostly copied) from Create React App (https://github.com/facebookincubator/create-react-app)
|
||||
// They, in turn, got inspired by webpack-hot-middleware (https://github.com/glenjamin/webpack-hot-middleware).
|
||||
|
||||
import ansiHTML from "ansi-html-community";
|
||||
import { encode } from "html-entities";
|
||||
import { listenToRuntimeError, listenToUnhandledRejection, parseErrorToStacks } from "./overlay/runtime-error.js";
|
||||
import createOverlayMachine from "./overlay/state-machine.js";
|
||||
import { containerStyle, dismissButtonStyle, headerStyle, iframeStyle, msgStyles, msgTextStyle, msgTypeStyle } from "./overlay/styles.js";
|
||||
var colors = {
|
||||
reset: ["transparent", "transparent"],
|
||||
black: "181818",
|
||||
red: "E36049",
|
||||
green: "B3CB74",
|
||||
yellow: "FFD080",
|
||||
blue: "7CAFC2",
|
||||
magenta: "7FACCA",
|
||||
cyan: "C3C2EF",
|
||||
lightgrey: "EBE7E3",
|
||||
darkgrey: "6D7891"
|
||||
};
|
||||
ansiHTML.setColors(colors);
|
||||
|
||||
/**
|
||||
* @param {string} type
|
||||
* @param {string | { file?: string, moduleName?: string, loc?: string, message?: string; stack?: string[] }} item
|
||||
* @returns {{ header: string, body: string }}
|
||||
*/
|
||||
function formatProblem(type, item) {
|
||||
var header = type === "warning" ? "WARNING" : "ERROR";
|
||||
var body = "";
|
||||
if (typeof item === "string") {
|
||||
body += item;
|
||||
} else {
|
||||
var file = item.file || "";
|
||||
// eslint-disable-next-line no-nested-ternary
|
||||
var moduleName = item.moduleName ? item.moduleName.indexOf("!") !== -1 ? "".concat(item.moduleName.replace(/^(\s|\S)*!/, ""), " (").concat(item.moduleName, ")") : "".concat(item.moduleName) : "";
|
||||
var loc = item.loc;
|
||||
header += "".concat(moduleName || file ? " in ".concat(moduleName ? "".concat(moduleName).concat(file ? " (".concat(file, ")") : "") : file).concat(loc ? " ".concat(loc) : "") : "");
|
||||
body += item.message || "";
|
||||
}
|
||||
if (Array.isArray(item.stack)) {
|
||||
item.stack.forEach(function (stack) {
|
||||
if (typeof stack === "string") {
|
||||
body += "\r\n".concat(stack);
|
||||
}
|
||||
});
|
||||
}
|
||||
return {
|
||||
header: header,
|
||||
body: body
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* @typedef {Object} CreateOverlayOptions
|
||||
* @property {string | null} trustedTypesPolicyName
|
||||
* @property {boolean | (error: Error) => void} [catchRuntimeError]
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {CreateOverlayOptions} options
|
||||
*/
|
||||
var createOverlay = function createOverlay(options) {
|
||||
/** @type {HTMLIFrameElement | null | undefined} */
|
||||
var iframeContainerElement;
|
||||
/** @type {HTMLDivElement | null | undefined} */
|
||||
var containerElement;
|
||||
/** @type {HTMLDivElement | null | undefined} */
|
||||
var headerElement;
|
||||
/** @type {Array<(element: HTMLDivElement) => void>} */
|
||||
var onLoadQueue = [];
|
||||
/** @type {TrustedTypePolicy | undefined} */
|
||||
var overlayTrustedTypesPolicy;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {HTMLElement} element
|
||||
* @param {CSSStyleDeclaration} style
|
||||
*/
|
||||
function applyStyle(element, style) {
|
||||
Object.keys(style).forEach(function (prop) {
|
||||
element.style[prop] = style[prop];
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string | null} trustedTypesPolicyName
|
||||
*/
|
||||
function createContainer(trustedTypesPolicyName) {
|
||||
// Enable Trusted Types if they are available in the current browser.
|
||||
if (window.trustedTypes) {
|
||||
overlayTrustedTypesPolicy = window.trustedTypes.createPolicy(trustedTypesPolicyName || "webpack-dev-server#overlay", {
|
||||
createHTML: function createHTML(value) {
|
||||
return value;
|
||||
}
|
||||
});
|
||||
}
|
||||
iframeContainerElement = document.createElement("iframe");
|
||||
iframeContainerElement.id = "webpack-dev-server-client-overlay";
|
||||
iframeContainerElement.src = "about:blank";
|
||||
applyStyle(iframeContainerElement, iframeStyle);
|
||||
iframeContainerElement.onload = function () {
|
||||
var contentElement = /** @type {Document} */
|
||||
( /** @type {HTMLIFrameElement} */
|
||||
iframeContainerElement.contentDocument).createElement("div");
|
||||
containerElement = /** @type {Document} */
|
||||
( /** @type {HTMLIFrameElement} */
|
||||
iframeContainerElement.contentDocument).createElement("div");
|
||||
contentElement.id = "webpack-dev-server-client-overlay-div";
|
||||
applyStyle(contentElement, containerStyle);
|
||||
headerElement = document.createElement("div");
|
||||
headerElement.innerText = "Compiled with problems:";
|
||||
applyStyle(headerElement, headerStyle);
|
||||
var closeButtonElement = document.createElement("button");
|
||||
applyStyle(closeButtonElement, dismissButtonStyle);
|
||||
closeButtonElement.innerText = "×";
|
||||
closeButtonElement.ariaLabel = "Dismiss";
|
||||
closeButtonElement.addEventListener("click", function () {
|
||||
// eslint-disable-next-line no-use-before-define
|
||||
overlayService.send({
|
||||
type: "DISMISS"
|
||||
});
|
||||
});
|
||||
contentElement.appendChild(headerElement);
|
||||
contentElement.appendChild(closeButtonElement);
|
||||
contentElement.appendChild(containerElement);
|
||||
|
||||
/** @type {Document} */
|
||||
( /** @type {HTMLIFrameElement} */
|
||||
iframeContainerElement.contentDocument).body.appendChild(contentElement);
|
||||
onLoadQueue.forEach(function (onLoad) {
|
||||
onLoad( /** @type {HTMLDivElement} */contentElement);
|
||||
});
|
||||
onLoadQueue = [];
|
||||
|
||||
/** @type {HTMLIFrameElement} */
|
||||
iframeContainerElement.onload = null;
|
||||
};
|
||||
document.body.appendChild(iframeContainerElement);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {(element: HTMLDivElement) => void} callback
|
||||
* @param {string | null} trustedTypesPolicyName
|
||||
*/
|
||||
function ensureOverlayExists(callback, trustedTypesPolicyName) {
|
||||
if (containerElement) {
|
||||
containerElement.innerHTML = overlayTrustedTypesPolicy ? overlayTrustedTypesPolicy.createHTML("") : "";
|
||||
// Everything is ready, call the callback right away.
|
||||
callback(containerElement);
|
||||
return;
|
||||
}
|
||||
onLoadQueue.push(callback);
|
||||
if (iframeContainerElement) {
|
||||
return;
|
||||
}
|
||||
createContainer(trustedTypesPolicyName);
|
||||
}
|
||||
|
||||
// Successful compilation.
|
||||
function hide() {
|
||||
if (!iframeContainerElement) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Clean up and reset internal state.
|
||||
document.body.removeChild(iframeContainerElement);
|
||||
iframeContainerElement = null;
|
||||
containerElement = null;
|
||||
}
|
||||
|
||||
// Compilation with errors (e.g. syntax error or missing modules).
|
||||
/**
|
||||
* @param {string} type
|
||||
* @param {Array<string | { moduleIdentifier?: string, moduleName?: string, loc?: string, message?: string }>} messages
|
||||
* @param {string | null} trustedTypesPolicyName
|
||||
* @param {'build' | 'runtime'} messageSource
|
||||
*/
|
||||
function show(type, messages, trustedTypesPolicyName, messageSource) {
|
||||
ensureOverlayExists(function () {
|
||||
headerElement.innerText = messageSource === "runtime" ? "Uncaught runtime errors:" : "Compiled with problems:";
|
||||
messages.forEach(function (message) {
|
||||
var entryElement = document.createElement("div");
|
||||
var msgStyle = type === "warning" ? msgStyles.warning : msgStyles.error;
|
||||
applyStyle(entryElement, _objectSpread(_objectSpread({}, msgStyle), {}, {
|
||||
padding: "1rem 1rem 1.5rem 1rem"
|
||||
}));
|
||||
var typeElement = document.createElement("div");
|
||||
var _formatProblem = formatProblem(type, message),
|
||||
header = _formatProblem.header,
|
||||
body = _formatProblem.body;
|
||||
typeElement.innerText = header;
|
||||
applyStyle(typeElement, msgTypeStyle);
|
||||
if (message.moduleIdentifier) {
|
||||
applyStyle(typeElement, {
|
||||
cursor: "pointer"
|
||||
});
|
||||
// element.dataset not supported in IE
|
||||
typeElement.setAttribute("data-can-open", true);
|
||||
typeElement.addEventListener("click", function () {
|
||||
fetch("/webpack-dev-server/open-editor?fileName=".concat(message.moduleIdentifier));
|
||||
});
|
||||
}
|
||||
|
||||
// Make it look similar to our terminal.
|
||||
var text = ansiHTML(encode(body));
|
||||
var messageTextNode = document.createElement("div");
|
||||
applyStyle(messageTextNode, msgTextStyle);
|
||||
messageTextNode.innerHTML = overlayTrustedTypesPolicy ? overlayTrustedTypesPolicy.createHTML(text) : text;
|
||||
entryElement.appendChild(typeElement);
|
||||
entryElement.appendChild(messageTextNode);
|
||||
|
||||
/** @type {HTMLDivElement} */
|
||||
containerElement.appendChild(entryElement);
|
||||
});
|
||||
}, trustedTypesPolicyName);
|
||||
}
|
||||
var overlayService = createOverlayMachine({
|
||||
showOverlay: function showOverlay(_ref) {
|
||||
var _ref$level = _ref.level,
|
||||
level = _ref$level === void 0 ? "error" : _ref$level,
|
||||
messages = _ref.messages,
|
||||
messageSource = _ref.messageSource;
|
||||
return show(level, messages, options.trustedTypesPolicyName, messageSource);
|
||||
},
|
||||
hideOverlay: hide
|
||||
});
|
||||
if (options.catchRuntimeError) {
|
||||
/**
|
||||
* @param {Error | undefined} error
|
||||
* @param {string} fallbackMessage
|
||||
*/
|
||||
var handleError = function handleError(error, fallbackMessage) {
|
||||
var errorObject = error instanceof Error ? error : new Error(error || fallbackMessage);
|
||||
var shouldDisplay = typeof options.catchRuntimeError === "function" ? options.catchRuntimeError(errorObject) : true;
|
||||
if (shouldDisplay) {
|
||||
overlayService.send({
|
||||
type: "RUNTIME_ERROR",
|
||||
messages: [{
|
||||
message: errorObject.message,
|
||||
stack: parseErrorToStacks(errorObject)
|
||||
}]
|
||||
});
|
||||
}
|
||||
};
|
||||
listenToRuntimeError(function (errorEvent) {
|
||||
// error property may be empty in older browser like IE
|
||||
var error = errorEvent.error,
|
||||
message = errorEvent.message;
|
||||
if (!error && !message) {
|
||||
return;
|
||||
}
|
||||
handleError(error, message);
|
||||
});
|
||||
listenToUnhandledRejection(function (promiseRejectionEvent) {
|
||||
var reason = promiseRejectionEvent.reason;
|
||||
handleError(reason, "Unknown promise rejection reason");
|
||||
});
|
||||
}
|
||||
return overlayService;
|
||||
};
|
||||
export { formatProblem, createOverlay };
|
66
node_modules/webpack-dev-server/client/socket.js
generated
vendored
Normal file
66
node_modules/webpack-dev-server/client/socket.js
generated
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
/* global __webpack_dev_server_client__ */
|
||||
|
||||
import WebSocketClient from "./clients/WebSocketClient.js";
|
||||
import { log } from "./utils/log.js";
|
||||
|
||||
// this WebsocketClient is here as a default fallback, in case the client is not injected
|
||||
/* eslint-disable camelcase */
|
||||
var Client =
|
||||
// eslint-disable-next-line no-nested-ternary
|
||||
typeof __webpack_dev_server_client__ !== "undefined" ? typeof __webpack_dev_server_client__.default !== "undefined" ? __webpack_dev_server_client__.default : __webpack_dev_server_client__ : WebSocketClient;
|
||||
/* eslint-enable camelcase */
|
||||
|
||||
var retries = 0;
|
||||
var maxRetries = 10;
|
||||
|
||||
// Initialized client is exported so external consumers can utilize the same instance
|
||||
// It is mutable to enforce singleton
|
||||
// eslint-disable-next-line import/no-mutable-exports
|
||||
export var client = null;
|
||||
|
||||
/**
|
||||
* @param {string} url
|
||||
* @param {{ [handler: string]: (data?: any, params?: any) => any }} handlers
|
||||
* @param {number} [reconnect]
|
||||
*/
|
||||
var socket = function initSocket(url, handlers, reconnect) {
|
||||
client = new Client(url);
|
||||
client.onOpen(function () {
|
||||
retries = 0;
|
||||
if (typeof reconnect !== "undefined") {
|
||||
maxRetries = reconnect;
|
||||
}
|
||||
});
|
||||
client.onClose(function () {
|
||||
if (retries === 0) {
|
||||
handlers.close();
|
||||
}
|
||||
|
||||
// Try to reconnect.
|
||||
client = null;
|
||||
|
||||
// After 10 retries stop trying, to prevent logspam.
|
||||
if (retries < maxRetries) {
|
||||
// Exponentially increase timeout to reconnect.
|
||||
// Respectfully copied from the package `got`.
|
||||
// eslint-disable-next-line no-restricted-properties
|
||||
var retryInMs = 1000 * Math.pow(2, retries) + Math.random() * 100;
|
||||
retries += 1;
|
||||
log.info("Trying to reconnect...");
|
||||
setTimeout(function () {
|
||||
socket(url, handlers, reconnect);
|
||||
}, retryInMs);
|
||||
}
|
||||
});
|
||||
client.onMessage(
|
||||
/**
|
||||
* @param {any} data
|
||||
*/
|
||||
function (data) {
|
||||
var message = JSON.parse(data);
|
||||
if (handlers[message.type]) {
|
||||
handlers[message.type](message.data, message.params);
|
||||
}
|
||||
});
|
||||
};
|
||||
export default socket;
|
24
node_modules/webpack-dev-server/client/utils/getCurrentScriptSource.js
generated
vendored
Normal file
24
node_modules/webpack-dev-server/client/utils/getCurrentScriptSource.js
generated
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
/**
|
||||
* @returns {string}
|
||||
*/
|
||||
function getCurrentScriptSource() {
|
||||
// `document.currentScript` is the most accurate way to find the current script,
|
||||
// but is not supported in all browsers.
|
||||
if (document.currentScript) {
|
||||
return document.currentScript.getAttribute("src");
|
||||
}
|
||||
|
||||
// Fallback to getting all scripts running in the document.
|
||||
var scriptElements = document.scripts || [];
|
||||
var scriptElementsWithSrc = Array.prototype.filter.call(scriptElements, function (element) {
|
||||
return element.getAttribute("src");
|
||||
});
|
||||
if (scriptElementsWithSrc.length > 0) {
|
||||
var currentScript = scriptElementsWithSrc[scriptElementsWithSrc.length - 1];
|
||||
return currentScript.getAttribute("src");
|
||||
}
|
||||
|
||||
// Fail as there was no script to use.
|
||||
throw new Error("[webpack-dev-server] Failed to get current script source.");
|
||||
}
|
||||
export default getCurrentScriptSource;
|
35
node_modules/webpack-dev-server/client/utils/log.js
generated
vendored
Normal file
35
node_modules/webpack-dev-server/client/utils/log.js
generated
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
import logger from "../modules/logger/index.js";
|
||||
var name = "webpack-dev-server";
|
||||
// default level is set on the client side, so it does not need
|
||||
// to be set by the CLI or API
|
||||
var defaultLevel = "info";
|
||||
|
||||
// options new options, merge with old options
|
||||
/**
|
||||
* @param {false | true | "none" | "error" | "warn" | "info" | "log" | "verbose"} level
|
||||
* @returns {void}
|
||||
*/
|
||||
function setLogLevel(level) {
|
||||
logger.configureDefaultLogger({
|
||||
level: level
|
||||
});
|
||||
}
|
||||
setLogLevel(defaultLevel);
|
||||
var log = logger.getLogger(name);
|
||||
var logEnabledFeatures = function logEnabledFeatures(features) {
|
||||
var enabledFeatures = Object.keys(features);
|
||||
if (!features || enabledFeatures.length === 0) {
|
||||
return;
|
||||
}
|
||||
var logString = "Server started:";
|
||||
|
||||
// Server started: Hot Module Replacement enabled, Live Reloading enabled, Overlay disabled.
|
||||
for (var i = 0; i < enabledFeatures.length; i++) {
|
||||
var key = enabledFeatures[i];
|
||||
logString += " ".concat(key, " ").concat(features[key] ? "enabled" : "disabled", ",");
|
||||
}
|
||||
// replace last comma with a period
|
||||
logString = logString.slice(0, -1).concat(".");
|
||||
log.info(logString);
|
||||
};
|
||||
export { log, logEnabledFeatures, setLogLevel };
|
63
node_modules/webpack-dev-server/client/utils/reloadApp.js
generated
vendored
Normal file
63
node_modules/webpack-dev-server/client/utils/reloadApp.js
generated
vendored
Normal file
|
@ -0,0 +1,63 @@
|
|||
import hotEmitter from "webpack/hot/emitter.js";
|
||||
import { log } from "./log.js";
|
||||
|
||||
/** @typedef {import("../index").Options} Options
|
||||
/** @typedef {import("../index").Status} Status
|
||||
|
||||
/**
|
||||
* @param {Options} options
|
||||
* @param {Status} status
|
||||
*/
|
||||
function reloadApp(_ref, status) {
|
||||
var hot = _ref.hot,
|
||||
liveReload = _ref.liveReload;
|
||||
if (status.isUnloading) {
|
||||
return;
|
||||
}
|
||||
var currentHash = status.currentHash,
|
||||
previousHash = status.previousHash;
|
||||
var isInitial = currentHash.indexOf( /** @type {string} */previousHash) >= 0;
|
||||
if (isInitial) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Window} rootWindow
|
||||
* @param {number} intervalId
|
||||
*/
|
||||
function applyReload(rootWindow, intervalId) {
|
||||
clearInterval(intervalId);
|
||||
log.info("App updated. Reloading...");
|
||||
rootWindow.location.reload();
|
||||
}
|
||||
var search = self.location.search.toLowerCase();
|
||||
var allowToHot = search.indexOf("webpack-dev-server-hot=false") === -1;
|
||||
var allowToLiveReload = search.indexOf("webpack-dev-server-live-reload=false") === -1;
|
||||
if (hot && allowToHot) {
|
||||
log.info("App hot update...");
|
||||
hotEmitter.emit("webpackHotUpdate", status.currentHash);
|
||||
if (typeof self !== "undefined" && self.window) {
|
||||
// broadcast update to window
|
||||
self.postMessage("webpackHotUpdate".concat(status.currentHash), "*");
|
||||
}
|
||||
}
|
||||
// allow refreshing the page only if liveReload isn't disabled
|
||||
else if (liveReload && allowToLiveReload) {
|
||||
var rootWindow = self;
|
||||
|
||||
// use parent window for reload (in case we're in an iframe with no valid src)
|
||||
var intervalId = self.setInterval(function () {
|
||||
if (rootWindow.location.protocol !== "about:") {
|
||||
// reload immediately if protocol is valid
|
||||
applyReload(rootWindow, intervalId);
|
||||
} else {
|
||||
rootWindow = rootWindow.parent;
|
||||
if (rootWindow.parent === rootWindow) {
|
||||
// if parent equals current window we've reached the root which would continue forever, so trigger a reload anyways
|
||||
applyReload(rootWindow, intervalId);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
export default reloadApp;
|
16
node_modules/webpack-dev-server/client/utils/sendMessage.js
generated
vendored
Normal file
16
node_modules/webpack-dev-server/client/utils/sendMessage.js
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
/* global __resourceQuery WorkerGlobalScope */
|
||||
|
||||
// Send messages to the outside, so plugins can consume it.
|
||||
/**
|
||||
* @param {string} type
|
||||
* @param {any} [data]
|
||||
*/
|
||||
function sendMsg(type, data) {
|
||||
if (typeof self !== "undefined" && (typeof WorkerGlobalScope === "undefined" || !(self instanceof WorkerGlobalScope))) {
|
||||
self.postMessage({
|
||||
type: "webpack".concat(type),
|
||||
data: data
|
||||
}, "*");
|
||||
}
|
||||
}
|
||||
export default sendMsg;
|
3238
node_modules/webpack-dev-server/lib/Server.js
generated
vendored
Normal file
3238
node_modules/webpack-dev-server/lib/Server.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
1016
node_modules/webpack-dev-server/lib/options.json
generated
vendored
Normal file
1016
node_modules/webpack-dev-server/lib/options.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
18
node_modules/webpack-dev-server/lib/servers/BaseServer.js
generated
vendored
Normal file
18
node_modules/webpack-dev-server/lib/servers/BaseServer.js
generated
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
"use strict";
|
||||
|
||||
/** @typedef {import("../Server").ClientConnection} ClientConnection */
|
||||
|
||||
// base class that users should extend if they are making their own
|
||||
// server implementation
|
||||
module.exports = class BaseServer {
|
||||
/**
|
||||
* @param {import("../Server")} server
|
||||
*/
|
||||
constructor(server) {
|
||||
/** @type {import("../Server")} */
|
||||
this.server = server;
|
||||
|
||||
/** @type {ClientConnection[]} */
|
||||
this.clients = [];
|
||||
}
|
||||
};
|
126
node_modules/webpack-dev-server/lib/servers/SockJSServer.js
generated
vendored
Normal file
126
node_modules/webpack-dev-server/lib/servers/SockJSServer.js
generated
vendored
Normal file
|
@ -0,0 +1,126 @@
|
|||
"use strict";
|
||||
|
||||
const sockjs = require("sockjs");
|
||||
const BaseServer = require("./BaseServer");
|
||||
|
||||
/** @typedef {import("../Server").WebSocketServerConfiguration} WebSocketServerConfiguration */
|
||||
/** @typedef {import("../Server").ClientConnection} ClientConnection */
|
||||
|
||||
// Workaround for sockjs@~0.3.19
|
||||
// sockjs will remove Origin header, however Origin header is required for checking host.
|
||||
// See https://github.com/webpack/webpack-dev-server/issues/1604 for more information
|
||||
{
|
||||
// @ts-ignore
|
||||
const SockjsSession = require("sockjs/lib/transport").Session;
|
||||
const decorateConnection = SockjsSession.prototype.decorateConnection;
|
||||
|
||||
/**
|
||||
* @param {import("http").IncomingMessage} req
|
||||
*/
|
||||
// eslint-disable-next-line func-names
|
||||
SockjsSession.prototype.decorateConnection = function (req) {
|
||||
decorateConnection.call(this, req);
|
||||
|
||||
const connection = this.connection;
|
||||
|
||||
if (
|
||||
connection.headers &&
|
||||
!("origin" in connection.headers) &&
|
||||
"origin" in req.headers
|
||||
) {
|
||||
connection.headers.origin = req.headers.origin;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = class SockJSServer extends BaseServer {
|
||||
// options has: error (function), debug (function), server (http/s server), path (string)
|
||||
/**
|
||||
* @param {import("../Server")} server
|
||||
*/
|
||||
constructor(server) {
|
||||
super(server);
|
||||
|
||||
const webSocketServerOptions =
|
||||
/** @type {NonNullable<WebSocketServerConfiguration["options"]>} */
|
||||
(
|
||||
/** @type {WebSocketServerConfiguration} */
|
||||
(this.server.options.webSocketServer).options
|
||||
);
|
||||
|
||||
/**
|
||||
* @param {NonNullable<WebSocketServerConfiguration["options"]>} options
|
||||
* @returns {string}
|
||||
*/
|
||||
const getSockjsUrl = (options) => {
|
||||
if (typeof options.sockjsUrl !== "undefined") {
|
||||
return options.sockjsUrl;
|
||||
}
|
||||
|
||||
return "/__webpack_dev_server__/sockjs.bundle.js";
|
||||
};
|
||||
|
||||
this.implementation = sockjs.createServer({
|
||||
// Use provided up-to-date sockjs-client
|
||||
sockjs_url: getSockjsUrl(webSocketServerOptions),
|
||||
// Default logger is very annoy. Limit useless logs.
|
||||
/**
|
||||
* @param {string} severity
|
||||
* @param {string} line
|
||||
*/
|
||||
log: (severity, line) => {
|
||||
if (severity === "error") {
|
||||
this.server.logger.error(line);
|
||||
} else if (severity === "info") {
|
||||
this.server.logger.log(line);
|
||||
} else {
|
||||
this.server.logger.debug(line);
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
/**
|
||||
* @param {import("sockjs").ServerOptions & { path?: string }} options
|
||||
* @returns {string | undefined}
|
||||
*/
|
||||
const getPrefix = (options) => {
|
||||
if (typeof options.prefix !== "undefined") {
|
||||
return options.prefix;
|
||||
}
|
||||
|
||||
return options.path;
|
||||
};
|
||||
|
||||
const options = {
|
||||
...webSocketServerOptions,
|
||||
prefix: getPrefix(webSocketServerOptions),
|
||||
};
|
||||
|
||||
this.implementation.installHandlers(
|
||||
/** @type {import("http").Server} */ (this.server.server),
|
||||
options,
|
||||
);
|
||||
|
||||
this.implementation.on("connection", (client) => {
|
||||
// @ts-ignore
|
||||
// Implement the the same API as for `ws`
|
||||
client.send = client.write;
|
||||
// @ts-ignore
|
||||
client.terminate = client.close;
|
||||
|
||||
this.clients.push(/** @type {ClientConnection} */ (client));
|
||||
|
||||
client.on("close", () => {
|
||||
this.clients.splice(
|
||||
this.clients.indexOf(/** @type {ClientConnection} */ (client)),
|
||||
1,
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
// @ts-ignore
|
||||
this.implementation.close = (callback) => {
|
||||
callback();
|
||||
};
|
||||
}
|
||||
};
|
116
node_modules/webpack-dev-server/lib/servers/WebsocketServer.js
generated
vendored
Normal file
116
node_modules/webpack-dev-server/lib/servers/WebsocketServer.js
generated
vendored
Normal file
|
@ -0,0 +1,116 @@
|
|||
"use strict";
|
||||
|
||||
const WebSocket = require("ws");
|
||||
const BaseServer = require("./BaseServer");
|
||||
|
||||
/** @typedef {import("../Server").WebSocketServerConfiguration} WebSocketServerConfiguration */
|
||||
/** @typedef {import("../Server").ClientConnection} ClientConnection */
|
||||
|
||||
module.exports = class WebsocketServer extends BaseServer {
|
||||
static heartbeatInterval = 1000;
|
||||
|
||||
/**
|
||||
* @param {import("../Server")} server
|
||||
*/
|
||||
constructor(server) {
|
||||
super(server);
|
||||
|
||||
/** @type {import("ws").ServerOptions} */
|
||||
const options = {
|
||||
.../** @type {WebSocketServerConfiguration} */
|
||||
(this.server.options.webSocketServer).options,
|
||||
clientTracking: false,
|
||||
};
|
||||
const isNoServerMode =
|
||||
typeof options.port === "undefined" &&
|
||||
typeof options.server === "undefined";
|
||||
|
||||
if (isNoServerMode) {
|
||||
options.noServer = true;
|
||||
}
|
||||
|
||||
this.implementation = new WebSocket.Server(options);
|
||||
|
||||
/** @type {import("http").Server} */
|
||||
(this.server.server).on(
|
||||
"upgrade",
|
||||
/**
|
||||
* @param {import("http").IncomingMessage} req
|
||||
* @param {import("stream").Duplex} sock
|
||||
* @param {Buffer} head
|
||||
*/
|
||||
(req, sock, head) => {
|
||||
if (!this.implementation.shouldHandle(req)) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.implementation.handleUpgrade(req, sock, head, (connection) => {
|
||||
this.implementation.emit("connection", connection, req);
|
||||
});
|
||||
},
|
||||
);
|
||||
|
||||
this.implementation.on(
|
||||
"error",
|
||||
/**
|
||||
* @param {Error} err
|
||||
*/
|
||||
(err) => {
|
||||
this.server.logger.error(err.message);
|
||||
},
|
||||
);
|
||||
|
||||
const interval = setInterval(() => {
|
||||
this.clients.forEach(
|
||||
/**
|
||||
* @param {ClientConnection} client
|
||||
*/
|
||||
(client) => {
|
||||
if (client.isAlive === false) {
|
||||
client.terminate();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
client.isAlive = false;
|
||||
client.ping(() => {});
|
||||
},
|
||||
);
|
||||
}, WebsocketServer.heartbeatInterval);
|
||||
|
||||
this.implementation.on(
|
||||
"connection",
|
||||
/**
|
||||
* @param {ClientConnection} client
|
||||
*/
|
||||
(client) => {
|
||||
this.clients.push(client);
|
||||
|
||||
client.isAlive = true;
|
||||
|
||||
client.on("pong", () => {
|
||||
client.isAlive = true;
|
||||
});
|
||||
|
||||
client.on("close", () => {
|
||||
this.clients.splice(this.clients.indexOf(client), 1);
|
||||
});
|
||||
|
||||
// TODO: add a test case for this - https://github.com/webpack/webpack-dev-server/issues/5018
|
||||
client.on(
|
||||
"error",
|
||||
/**
|
||||
* @param {Error} err
|
||||
*/
|
||||
(err) => {
|
||||
this.server.logger.error(err.message);
|
||||
},
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
this.implementation.on("close", () => {
|
||||
clearInterval(interval);
|
||||
});
|
||||
}
|
||||
};
|
147
node_modules/webpack-dev-server/package.json
generated
vendored
Normal file
147
node_modules/webpack-dev-server/package.json
generated
vendored
Normal file
|
@ -0,0 +1,147 @@
|
|||
{
|
||||
"name": "webpack-dev-server",
|
||||
"version": "5.0.4",
|
||||
"description": "Serves a webpack app. Updates the browser on changes.",
|
||||
"bin": "bin/webpack-dev-server.js",
|
||||
"main": "lib/Server.js",
|
||||
"types": "types/lib/Server.d.ts",
|
||||
"author": "Tobias Koppers @sokra",
|
||||
"bugs": "https://github.com/webpack/webpack-dev-server/issues",
|
||||
"homepage": "https://github.com/webpack/webpack-dev-server#readme",
|
||||
"repository": "https://github.com/webpack/webpack-dev-server",
|
||||
"license": "MIT",
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/webpack"
|
||||
},
|
||||
"files": [
|
||||
"bin",
|
||||
"lib",
|
||||
"client",
|
||||
"types"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">= 18.12.0"
|
||||
},
|
||||
"scripts": {
|
||||
"fmt:check": "prettier \"{**/*,*}.{js,json,md,yml,css,ts}\" --list-different",
|
||||
"lint:prettier": "prettier --cache --list-different .",
|
||||
"lint:js": "eslint --cache .",
|
||||
"lint:types": "tsc --pretty --noEmit",
|
||||
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
|
||||
"lint": "npm-run-all -l -p \"lint:**\"",
|
||||
"fix:js": "npm run lint:js -- --fix",
|
||||
"fix:prettier": "npm run lint:prettier -- --write",
|
||||
"fix": "npm-run-all -l fix:js fix:prettier",
|
||||
"commitlint": "commitlint --from=master",
|
||||
"build:client": "rimraf -g ./client/* && babel client-src/ --out-dir client/ --ignore \"client-src/webpack.config.js\" --ignore \"client-src/modules\" && webpack --config client-src/webpack.config.js",
|
||||
"build:types": "rimraf -g ./types/* && tsc --declaration --emitDeclarationOnly --outDir types && node ./scripts/extend-webpack-types.js && prettier \"types/**/*.ts\" --write && prettier \"types/**/*.ts\" --write",
|
||||
"build": "npm-run-all -p \"build:**\"",
|
||||
"test:only": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
||||
"test:coverage": "npm run test:only -- --coverage",
|
||||
"test:watch": "npm run test:coverage --watch",
|
||||
"test": "npm run test:coverage",
|
||||
"pretest": "npm run lint",
|
||||
"prepare": "husky && npm run build",
|
||||
"release": "standard-version"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/bonjour": "^3.5.13",
|
||||
"@types/connect-history-api-fallback": "^1.5.4",
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/serve-index": "^1.9.4",
|
||||
"@types/serve-static": "^1.15.5",
|
||||
"@types/sockjs": "^0.3.36",
|
||||
"@types/ws": "^8.5.10",
|
||||
"ansi-html-community": "^0.0.8",
|
||||
"bonjour-service": "^1.2.1",
|
||||
"chokidar": "^3.6.0",
|
||||
"colorette": "^2.0.10",
|
||||
"compression": "^1.7.4",
|
||||
"connect-history-api-fallback": "^2.0.0",
|
||||
"default-gateway": "^6.0.3",
|
||||
"express": "^4.17.3",
|
||||
"graceful-fs": "^4.2.6",
|
||||
"html-entities": "^2.4.0",
|
||||
"http-proxy-middleware": "^2.0.3",
|
||||
"ipaddr.js": "^2.1.0",
|
||||
"launch-editor": "^2.6.1",
|
||||
"open": "^10.0.3",
|
||||
"p-retry": "^6.2.0",
|
||||
"rimraf": "^5.0.5",
|
||||
"schema-utils": "^4.2.0",
|
||||
"selfsigned": "^2.4.1",
|
||||
"serve-index": "^1.9.1",
|
||||
"sockjs": "^0.3.24",
|
||||
"spdy": "^4.0.2",
|
||||
"webpack-dev-middleware": "^7.1.0",
|
||||
"ws": "^8.16.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.22.5",
|
||||
"@babel/core": "^7.22.5",
|
||||
"@babel/eslint-parser": "^7.22.5",
|
||||
"@babel/plugin-transform-object-assign": "^7.22.5",
|
||||
"@babel/plugin-transform-runtime": "^7.22.5",
|
||||
"@babel/preset-env": "^7.22.5",
|
||||
"@babel/runtime": "^7.22.5",
|
||||
"@commitlint/cli": "^19.0.3",
|
||||
"@commitlint/config-conventional": "^19.0.3",
|
||||
"@types/compression": "^1.7.2",
|
||||
"@types/default-gateway": "^3.0.1",
|
||||
"@types/node": "^20.11.16",
|
||||
"@types/node-forge": "^1.3.1",
|
||||
"@types/sockjs-client": "^1.5.1",
|
||||
"@types/trusted-types": "^2.0.2",
|
||||
"acorn": "^8.9.0",
|
||||
"babel-jest": "^29.5.0",
|
||||
"babel-loader": "^9.1.0",
|
||||
"body-parser": "^1.19.2",
|
||||
"core-js": "^3.31.0",
|
||||
"cspell": "^8.3.2",
|
||||
"css-loader": "^6.8.1",
|
||||
"eslint": "^8.43.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-config-webpack": "^1.2.5",
|
||||
"eslint-plugin-import": "^2.23.2",
|
||||
"execa": "^5.1.1",
|
||||
"html-webpack-plugin": "^5.5.3",
|
||||
"http-proxy": "^1.18.1",
|
||||
"husky": "^9.0.10",
|
||||
"jest": "^29.5.0",
|
||||
"jest-environment-jsdom": "^29.5.0",
|
||||
"klona": "^2.0.4",
|
||||
"less": "^4.1.1",
|
||||
"less-loader": "^12.1.0",
|
||||
"lint-staged": "^15.2.0",
|
||||
"marked": "^12.0.0",
|
||||
"memfs": "^4.6.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^3.2.4",
|
||||
"puppeteer": "^22.1.0",
|
||||
"readable-stream": "^4.5.2",
|
||||
"require-from-string": "^2.0.2",
|
||||
"sockjs-client": "^1.6.1",
|
||||
"standard-version": "^9.3.0",
|
||||
"strip-ansi-v6": "npm:strip-ansi@^6.0.0",
|
||||
"style-loader": "^3.3.1",
|
||||
"supertest": "^6.1.3",
|
||||
"tcp-port-used": "^1.0.2",
|
||||
"typescript": "^5.3.3",
|
||||
"wait-for-expect": "^3.0.2",
|
||||
"webpack": "^5.89.0",
|
||||
"webpack-cli": "^5.0.1",
|
||||
"webpack-merge": "^5.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"webpack": "^5.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"webpack-cli": {
|
||||
"optional": true
|
||||
},
|
||||
"webpack": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue