@@ -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
1316All 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
1922Add 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:
3538GITHUB_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
4649Follow the prompts to select your preferred framework and configuration.
@@ -127,21 +130,6 @@ View cache operations:
127130vite 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:::
0 commit comments