Skip to content
Webpack's Command Line Interface
TypeScript JavaScript Smarty Other
Branch: next
Clone or download

Latest commit

snitin315 fix: throw error for invalid args (#1462)
Signed-off-by: Nitin Kumar <snitin315@gmail.com>
Latest commit 25b3e04 Apr 30, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github chore: minor grammar fix in Bug_report.md (#1499) Apr 27, 2020
packages fix: throw error for invalid args (#1462) Apr 30, 2020
scripts chore: integrate prettier for non js/ts files (#1415) Apr 3, 2020
smoketests chore: integrate prettier for non js/ts files (#1415) Apr 3, 2020
test fix: throw error for invalid args (#1462) Apr 30, 2020
.babelrc feat(webpack-cli): added mode argument (#1253) Feb 23, 2020
.codecov.yml chore(packager): remove yarn (#302) Mar 2, 2018
.cz-config.js docs: describe commit types (#1364) Mar 26, 2020
.editorconfig chore: readd deps and fix linting Jul 14, 2019
.eslintignore chore: integrate prettier for non js/ts files (#1415) Apr 3, 2020
.eslintrc.js chore: improve eslint configuration Apr 3, 2020
.fitcommitjsrc.json chore: integrate prettier for non js/ts files (#1415) Apr 3, 2020
.gitattributes chore(ci): Set up CI with Azure Pipelines Sep 14, 2018
.gitignore tests: remove temp loader directory before and after test (#1482) Apr 21, 2020
.npmignore chore(ci): add commitlint when trying to commit (#595) Sep 18, 2018
.prettierignore chore: integrate prettier for non js/ts files (#1415) Apr 3, 2020
CHANGELOG.md chore: changelogs aligned (#1257) Feb 23, 2020
CHANGELOG_v3.md chore(cli): updated changelog of v3 (#1224) Feb 13, 2020
CODEOWNERS feat: add codeowners file Aug 4, 2019
CODE_OF_CONDUCT.md docs: use a consistent format (#1338) Mar 17, 2020
INIT.md fix(init): fix the invalid package name (#1228) Feb 16, 2020
LICENSE Project Initialize Dec 15, 2016
MIGRATE.md chore: integrate prettier for non js/ts files (#1415) Apr 3, 2020
README.md docs: improve badges (#1390) Mar 31, 2020
SECURITY.md Fixing the typos and grammatical errors in Readme files (#1246) Feb 23, 2020
commitlint.config.js chore: remove stale code and improve logic (#1351) Mar 22, 2020
husky.config.js chore: improve eslint configuration Apr 3, 2020
jest.config.js chore: improve eslint configuration Apr 3, 2020
lerna.json fix: remove yes Feb 29, 2020
lint-staged.config.js chore: improve eslint configuration Apr 3, 2020
open-bot.yml chore: integrate prettier for non js/ts files (#1415) Apr 3, 2020
package.json chore: remove yo-rc on clean command (#1477) Apr 18, 2020
prettier.config.js chore: integrate prettier for non js/ts files (#1415) Apr 3, 2020
setupTest.js chore: improve eslint configuration Apr 3, 2020
tsconfig.json chore: refactor typescript configuration (#1399) Apr 1, 2020
yarn.lock chore(deps): bump commander from 2.20.3 to 5.1.0 (#1500) Apr 27, 2020

README.md

webpack CLI

The official CLI of webpack


This is the documentation of the beta version (being maintained on branch next).

We are working on reducing the number of arguments passed to the CLI, please leave your feedback here

npm Build Status Dependencies Install Size Chat on gitter

Table of Contents

About

webpack CLI provides a flexible set of commands for developers to increase speed when setting up a custom webpack project. As of webpack v4, webpack is not expecting a configuration file, but often developers want to create a more custom webpack configuration based on their use-cases and needs. webpack CLI addresses these needs by providing a set of tools to improve the setup of custom webpack configuration.

How to install

When you have followed the Getting Started guide of webpack then webpack CLI is already installed!

Otherwise npm install --save-dev webpack-cli or yarn add webpack-cli --dev will install it.

Supported arguments and commands

Get to know what are the available commands and arguments here.

Packages

We organize webpack CLI as a multi-package repository using lerna. Every command has a dedicated subfolder in the packages Folder. Here's a summary of commands provided by the CLI.

Commands

Supporting developers is an important task for webpack CLI. Thus, webpack CLI provides different commands for many common tasks.

Removed commands since v3.3.3

  • webpack-cli add - Add new properties to a webpack configuration file.
  • webpack-cli remove - Remove properties from a webpack configuration file.
  • webpack-cli update - Update properties in a webpack configuration file.

Utilities

The project also has several utility packages which are used by other commands

  • utils - Several utilities used across webpack-cli.
  • generators - Contains all webpack-cli related yeoman generators.
  • webpack-scaffold - Utilities to create a webpack scaffold.

Getting started

When you have followed the Getting Started guide of webpack then webpack CLI is already installed! Otherwise, you would need to install webpack CLI and the packages you want to use. If you want to use the init command to create a new webpack.config.js configuration file:

npm i webpack-cli @webpack-cli/init
npx webpack-cli init

You will be prompted for some questions about what how you want to generate your config file when running the init command so webpack CLI can provide the best fitting configuration.

webpack CLI Scaffolds

With v3 of webpack CLI, we introduced scaffolding as an integral part of the CLI. Our goal is to simplify the creation of webpack configurations for different purposes. Additionally, sharing such solutions with the community is beneficial and with webpack, we want to allow this. We provide webpack-scaffold as a utility suite for creating these scaffolds. It contains functions that could be of use for creating a scaffold yourself.

You can read more about Scaffolding, learn How to compose a webpack-scaffold? or generate one with webpack-scaffold-starter.

Contributing and Internal Documentation

The webpack family welcomes any contributor, small or big. We are happy to elaborate, guide you through the source code and find issues you might want to work on! To get started have a look at our documentation on contributing.

Open Collective

If you like webpack, please consider donating to our Open Collective to help us maintain it.

You can’t perform that action at this time.