Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/bumpy-pugs-press.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-webpack-app": patch
---

Fix name of create-webpack-app package.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Otherwise, you would need to install webpack CLI and the packages you want to us
If you want to create a fresh webpack project run the command as stated below:

```sh
npx create-new-webpack-app init
npx create-webpack-app init
```

You will then be prompted for some questions about which features you want to use, such as `scss`, `typescript`, `PWA` support or other features.
Expand Down
13 changes: 6 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions packages/create-webpack-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
### Usage

```bash
npx create-new-webpack-app [command] [options]
npx create-webpack-app [command] [options]
```

### Commands
Expand All @@ -31,31 +31,31 @@ npx create-new-webpack-app [command] [options]
**To generate default template**

```bash
npx create-new-webpack-app
npx create-webpack-app
```

**To generate with default answers**

```bash
npx create-new-webpack-app -f
npx create-webpack-app -f
```

or

```bash
npx create-new-webpack-app --force
npx create-webpack-app --force
```

**To generate in a specified path**

```bash
npx create-new-webpack-app [generation-path]
npx create-webpack-app [generation-path]
```

**To generate a project according to a template**

```bash
npx create-new-webpack-app --template <template-name>
npx create-webpack-app --template <template-name>
```

Available templates:
Expand Down
2 changes: 1 addition & 1 deletion packages/create-webpack-app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "create-new-webpack-app",
"name": "create-webpack-app",
"version": "2.0.0",
"description": "CLI for scaffolding webpack projects using default config, framework templates, loader or plugins templates",
"keywords": [
Expand Down
Loading