1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# webpack-cli Packages
## Table of content
- [Description](#description)
- [Packages](#packages)
- [Generic Installation](#generic-installation)
## Description
webpack CLI hosts several standalone packages apart from the main package that focuses on the solving respective smaller use cases.
This folder is the collection of those packages.
## Packages
1. [configtest](https://github.com/webpack/webpack-cli/tree/master/packages/configtest)
2. [generators](https://github.com/webpack/webpack-cli/tree/master/packages/generators)
3. [info](https://github.com/webpack/webpack-cli/tree/master/packages/info)
4. [migrate](https://www.npmjs.com/package/@webpack-cli/migrate)
5. [serve](https://github.com/webpack/webpack-cli/tree/master/packages/serve)
6. [webpack-cli](https://github.com/webpack/webpack-cli/tree/master/packages/webpack-cli)
## Generic Installation
1. Standalone installation of packages
```shell
npm install @webpack-cli/<package>
```
2. Installation of respective `package` with `webpack-cli` [Recommended]
```shell
npm install webpack-cli @webpack-cli/<package>
```
---
[Back to webpack-cli](https://github.com/webpack/webpack-cli)
|