Skip to content

Commit e4ba57f

Browse files
committed
FIXUP
1 parent c11a0fe commit e4ba57f

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
merge-multiple: true
122122

123123
- name: Build
124-
run: vp run vite-plus#build:ts @voidzero-dev/global#build
124+
run: vp run @voidzero-dev/vite-plus#build:ts @voidzero-dev/global#build
125125

126126
# Download again because `@voidzero-dev/global#build` will cleanup the dist dir first
127127
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0

packages/cli/README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ Add to your project's devDependencies:
1212

1313
```bash
1414
pnpm add -D @voidzero-dev/vite-plus
15+
# or
16+
npm install -D @voidzero-dev/vite-plus
17+
# or
18+
yarn add -D @voidzero-dev/vite-plus
1519
```
1620

1721
### Built-in Commands
@@ -21,23 +25,23 @@ pnpm add -D @voidzero-dev/vite-plus
2125
build command will use `rolldown-vite` to build your project.
2226

2327
```bash
24-
pnpx vite build
28+
npx vite build
2529
```
2630

2731
#### Test
2832

2933
test command will use `vitest` to test your project.
3034

3135
```bash
32-
pnpx vite test
36+
npx vite test
3337
```
3438

3539
#### Lint
3640

3741
lint command will use `oxlint` to lint your project.
3842

3943
```bash
40-
pnpx vite lint
44+
npx vite lint
4145
```
4246

4347
#### Task runner
@@ -47,13 +51,13 @@ You can use `vite run` to run any task that you want.
4751
Run a task on the current project.
4852

4953
```bash
50-
pnpx vite run <task-name>
54+
npx vite run <task-name>
5155
```
5256

5357
Run all task with the same name in monorepo.
5458

5559
```bash
56-
pnpx vite run -r <task-name>
60+
npx vite run -r <task-name>
5761
```
5862

5963
## Architecture

0 commit comments

Comments
 (0)