Project files

This commit is contained in:
2023-11-09 18:47:11 +01:00
parent 695abe054b
commit c415135aae
8554 changed files with 858111 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# webpack-cli serve
[![NPM Downloads][downloads]][downloads-url]
**This package is used by webpack-cli under-the-hood and is not intended for installation as of v0.2.0**
## Description
This package contains the logic to run [webpack-dev-server](https://github.com/webpack/webpack-dev-server) to serve your webpack app and provide live reloading.
## Installation
```bash
npm i -D webpack-cli @webpack-cli/serve
```
## Usage
### CLI (via `webpack-cli`)
```bash
npx webpack-cli serve
```
### Options
Checkout [`SERVE-OPTIONS-v3.md`](https://github.com/webpack/webpack-cli/blob/master/SERVE-OPTIONS-v3.md) or [`SERVE-OPTIONS-v4.md`](https://github.com/webpack/webpack-cli/blob/master/SERVE-OPTIONS-v4.md) to see list of all available options for `serve` command for respective [`webpack-dev-server`](https://github.com/webpack/webpack-dev-server) version.
[downloads]: https://img.shields.io/npm/dm/@webpack-cli/serve.svg
[downloads-url]: https://www.npmjs.com/package/@webpack-cli/serve

View File

@@ -0,0 +1,29 @@
{
"name": "@webpack-cli/serve",
"version": "1.6.1",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
},
"homepage": "https://github.com/webpack/webpack-cli/tree/master/packages/serve",
"license": "MIT",
"files": [
"lib"
],
"peerDependencies": {
"webpack-cli": "4.x.x"
},
"peerDependenciesMeta": {
"webpack-dev-server": {
"optional": true
}
},
"gitHead": "fb50f766851f500ca12867a2aa9de81fa6e368f9"
}