File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ Add to your project's devDependencies:
1212
1313``` bash
1414pnpm 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
2125build 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
2933test command will use ` vitest ` to test your project.
3034
3135``` bash
32- pnpx vite test
36+ npx vite test
3337```
3438
3539#### Lint
3640
3741lint 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.
4751Run a task on the current project.
4852
4953``` bash
50- pnpx vite run < task-name>
54+ npx vite run < task-name>
5155```
5256
5357Run 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
You can’t perform that action at this time.
0 commit comments