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