Skip to content

Commit 07b112f

Browse files
Replaced other pnpx entries
1 parent b8f348d commit 07b112f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/create-app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { yellow, green } = require('kolorist')
55

66
const alternativeCommands = {
77
yarn: 'yarn create vite',
8-
pnpm: 'pnpx create-vite',
8+
pnpm: 'pnpm dlx create-vite',
99
npm: 'npm init vite',
1010
unknown: 'npm init vite'
1111
}

packages/create-vite/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ $ yarn create vite
7676
With PNPM:
7777

7878
```bash
79-
$ pnpx create-vite
79+
$ pnpm dlx create-vite
8080
```
8181

8282

packages/create-vite/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $ yarn create vite
2020
With PNPM:
2121

2222
```bash
23-
$ pnpx create-vite
23+
$ pnpm dlx create-vite
2424
```
2525

2626
Then follow the prompts!
@@ -38,7 +38,7 @@ npm init vite@latest my-vue-app -- --template vue
3838
yarn create vite my-vue-app --template vue
3939

4040
# pnpm
41-
pnpx create-vite my-vue-app --template vue
41+
pnpm dlx create-vite my-vue-app --template vue
4242
```
4343

4444
Currently supported template presets include:

0 commit comments

Comments
 (0)