Skip to content

Commit a653b02

Browse files
fix: use a new create-webpack-app package name (#4704)
1 parent 173e4bf commit a653b02

File tree

5 files changed

+19
-15
lines changed

5 files changed

+19
-15
lines changed

.changeset/bumpy-pugs-press.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-webpack-app": patch
3+
---
4+
5+
Fix name of create-webpack-app package.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Otherwise, you would need to install webpack CLI and the packages you want to us
7474
If you want to create a fresh webpack project run the command as stated below:
7575

7676
```sh
77-
npx create-new-webpack-app init
77+
npx create-webpack-app init
7878
```
7979

8080
You will then be prompted for some questions about which features you want to use, such as `scss`, `typescript`, `PWA` support or other features.

package-lock.json

Lines changed: 6 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/create-webpack-app/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
### Usage
1818

1919
```bash
20-
npx create-new-webpack-app [command] [options]
20+
npx create-webpack-app [command] [options]
2121
```
2222

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

3333
```bash
34-
npx create-new-webpack-app
34+
npx create-webpack-app
3535
```
3636

3737
**To generate with default answers**
3838

3939
```bash
40-
npx create-new-webpack-app -f
40+
npx create-webpack-app -f
4141
```
4242

4343
or
4444

4545
```bash
46-
npx create-new-webpack-app --force
46+
npx create-webpack-app --force
4747
```
4848

4949
**To generate in a specified path**
5050

5151
```bash
52-
npx create-new-webpack-app [generation-path]
52+
npx create-webpack-app [generation-path]
5353
```
5454

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

5757
```bash
58-
npx create-new-webpack-app --template <template-name>
58+
npx create-webpack-app --template <template-name>
5959
```
6060

6161
Available templates:

packages/create-webpack-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "create-new-webpack-app",
2+
"name": "create-webpack-app",
33
"version": "2.0.0",
44
"description": "CLI for scaffolding webpack projects using default config, framework templates, loader or plugins templates",
55
"keywords": [

0 commit comments

Comments
 (0)