Skip to content

Commit de78926

Browse files
committed
Update index.md
1 parent b0426d8 commit de78926

3 files changed

Lines changed: 10 additions & 22 deletions

File tree

docs/guide/index.md

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Vite+ is a unified toolchain for modern web development that extends Vite with p
99
- **Task Runner**: Intelligent monorepo task execution with caching and dependency resolution
1010
- **Testing**: Built-in test runner with workspace support
1111
- **Linting**: Integrated oxlint for fast code quality checks
12+
- **Formatting**: Integrated oxfmt for consistent code formatting
13+
- **Code Generation**: Scaffolding for new projects and monorepo workspaces
14+
- **Dependency Management**: Integrated dependency management with pnpm, yarn, npm and bun(coming soon)
1215

1316
All in a single, cohesive tool designed for scale, speed, and developer sanity.
1417

@@ -18,7 +21,7 @@ All in a single, cohesive tool designed for scale, speed, and developer sanity.
1821

1922
Add the following to your `~/.npmrc`:
2023

21-
```
24+
```ini
2225
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}
2326
@voidzero-dev:registry=https://npm.pkg.github.com/
2427
```
@@ -35,12 +38,12 @@ Using 1Password CLI:
3538
GITHUB_TOKEN=$(op read "op://YOUR_GITHUB_TOKEN_PATH") npm install -g @voidzero-dev/global
3639
```
3740

38-
## Scaffolding Your First Project
41+
## Scaffolding Your First Vite+ Project
3942

40-
Create a new Vite+ project:
43+
Create a Vite+ project:
4144

4245
```bash
43-
vite new my-app
46+
vite gen
4447
```
4548

4649
Follow the prompts to select your preferred framework and configuration.
@@ -127,21 +130,6 @@ View cache operations:
127130
vite run build -r --debug
128131
```
129132

130-
## Project Structure
131-
132-
```
133-
my-monorepo/
134-
├── packages/
135-
│ ├── app/
136-
│ │ ├── package.json
137-
│ │ └── vite-task.json
138-
│ └── lib/
139-
│ ├── package.json
140-
│ └── vite-task.json
141-
├── package.json
142-
└── pnpm-workspace.yaml
143-
```
144-
145133
## Next Steps
146134

147135
- Learn more about [task configuration](/guide/tasks)
@@ -159,5 +147,5 @@ Get help and stay updated:
159147
---
160148

161149
::: tip Requirements
162-
Vite+ requires Node.js 20.19+ or 22.12+
150+
Vite+ requires Node.js 20.19+, 22.12+ or 24.12+
163151
:::

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ layout: home
55
hero:
66
name: "Vite+"
77
text: "The Unified Toolchain for the Web"
8-
tagline: "dev, build, test, lint, format, monorepo caching & more in al single dependency, build for scale, speed, and sanity"
8+
tagline: "dev, build, test, lint, format, monorepo caching & more in a single dependency, build for scale, speed, and sanity"
99
actions:
1010
- theme: brand
1111
text: Get Started

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"private": true,
55
"scripts": {
6-
"dev": "vite doc dev",
6+
"dev": "vitepress dev",
77
"build": "vite doc build",
88
"preview": "vite doc preview"
99
},

0 commit comments

Comments
 (0)