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,27 @@
# webpack-cli configtest
[![NPM Downloads][downloads]][downloads-url]
## Description
This package validates a webpack configuration.
## Installation
```bash
#npm
npm i -D @webpack-cli/configtest
#yarn
yarn add -D @webpack-cli/configtest
```
## Usage
```bash
npx webpack configtest [config-path]
```
[downloads]: https://img.shields.io/npm/dm/@webpack-cli/configtest.svg
[downloads-url]: https://www.npmjs.com/package/@webpack-cli/configtest

View File

@@ -0,0 +1,23 @@
{
"name": "@webpack-cli/configtest",
"version": "1.1.1",
"description": "Validate a webpack configuration.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
},
"homepage": "https://github.com/webpack/webpack-cli/tree/master/packages/configtest",
"files": [
"lib"
],
"peerDependencies": {
"webpack": "4.x.x || 5.x.x",
"webpack-cli": "4.x.x"
}
}

View File

@@ -0,0 +1,50 @@
# webpack-cli info
[![NPM Downloads][downloads]][downloads-url]
## Description
This package returns a set of information related to the local environment.
## Installation
```bash
#npm
npm i -D @webpack-cli/info
#yarn
yarn add -D @webpack-cli/info
```
## Usage
```bash
#npx
npx webpack info [options]
#global installation
webpack info [options]
```
### Args / Flags
#### Output format
| Flag | Description | Type |
| ------------------------------------- | --------------------------------------- | ------ |
| `-o, --output < json or markdown >` | To get the output in a specified format | string |
| `-a, --additional-package <value...>` | Adds additional packages to the output | string |
_Not supported for config_
#### Options
| Flag | Description | Type |
| ----------- | ------------------------------------------ | ------- |
| `--help` | Show help | boolean |
| `--version` | Show version number of `@webpack-cli/info` | boolean |
[downloads]: https://img.shields.io/npm/dm/@webpack-cli/info.svg
[downloads-url]: https://www.npmjs.com/package/@webpack-cli/info

View File

@@ -0,0 +1,29 @@
{
"name": "@webpack-cli/info",
"version": "1.4.1",
"description": "Outputs info about system and webpack config",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
},
"homepage": "https://github.com/webpack/webpack-cli/tree/master/packages/info",
"files": [
"lib"
],
"dependencies": {
"envinfo": "^7.7.3"
},
"gitHead": "fb50f766851f500ca12867a2aa9de81fa6e368f9",
"peerDependencies": {
"webpack-cli": "4.x.x"
},
"devDependencies": {
"@types/envinfo": "^7.8.1"
}
}

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"
}