vite-plus 0.1.16-alpha.2 → 0.1.16-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plus",
|
|
3
|
-
"version": "0.1.16-alpha.
|
|
3
|
+
"version": "0.1.16-alpha.3",
|
|
4
4
|
"description": "The Unified Toolchain for the Web",
|
|
5
5
|
"homepage": "https://viteplus.dev/guide",
|
|
6
6
|
"bugs": {
|
|
@@ -322,8 +322,8 @@
|
|
|
322
322
|
"oxfmt": "=0.43.0",
|
|
323
323
|
"oxlint": "=1.58.0",
|
|
324
324
|
"oxlint-tsgolint": "=0.19.0",
|
|
325
|
-
"@voidzero-dev/vite-plus-core": "0.1.16-alpha.
|
|
326
|
-
"@voidzero-dev/vite-plus-test": "0.1.16-alpha.
|
|
325
|
+
"@voidzero-dev/vite-plus-core": "0.1.16-alpha.3",
|
|
326
|
+
"@voidzero-dev/vite-plus-test": "0.1.16-alpha.3"
|
|
327
327
|
},
|
|
328
328
|
"devDependencies": {
|
|
329
329
|
"@napi-rs/cli": "^3.6.0",
|
|
@@ -348,8 +348,8 @@
|
|
|
348
348
|
"tsdown": "^0.21.7",
|
|
349
349
|
"validate-npm-package-name": "^7.0.2",
|
|
350
350
|
"yaml": "^2.8.1",
|
|
351
|
-
"
|
|
352
|
-
"
|
|
351
|
+
"@voidzero-dev/vite-plus-prompts": "0.0.0",
|
|
352
|
+
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.16-alpha.3"
|
|
353
353
|
},
|
|
354
354
|
"napi": {
|
|
355
355
|
"binaryName": "vite-plus",
|
|
@@ -369,14 +369,14 @@
|
|
|
369
369
|
"node": "^20.19.0 || >=22.12.0"
|
|
370
370
|
},
|
|
371
371
|
"optionalDependencies": {
|
|
372
|
-
"@voidzero-dev/vite-plus-darwin-arm64": "0.1.16-alpha.
|
|
373
|
-
"@voidzero-dev/vite-plus-darwin-x64": "0.1.16-alpha.
|
|
374
|
-
"@voidzero-dev/vite-plus-linux-arm64-gnu": "0.1.16-alpha.
|
|
375
|
-
"@voidzero-dev/vite-plus-linux-arm64-musl": "0.1.16-alpha.
|
|
376
|
-
"@voidzero-dev/vite-plus-linux-x64-gnu": "0.1.16-alpha.
|
|
377
|
-
"@voidzero-dev/vite-plus-linux-x64-musl": "0.1.16-alpha.
|
|
378
|
-
"@voidzero-dev/vite-plus-win32-x64-msvc": "0.1.16-alpha.
|
|
379
|
-
"@voidzero-dev/vite-plus-win32-arm64-msvc": "0.1.16-alpha.
|
|
372
|
+
"@voidzero-dev/vite-plus-darwin-arm64": "0.1.16-alpha.3",
|
|
373
|
+
"@voidzero-dev/vite-plus-darwin-x64": "0.1.16-alpha.3",
|
|
374
|
+
"@voidzero-dev/vite-plus-linux-arm64-gnu": "0.1.16-alpha.3",
|
|
375
|
+
"@voidzero-dev/vite-plus-linux-arm64-musl": "0.1.16-alpha.3",
|
|
376
|
+
"@voidzero-dev/vite-plus-linux-x64-gnu": "0.1.16-alpha.3",
|
|
377
|
+
"@voidzero-dev/vite-plus-linux-x64-musl": "0.1.16-alpha.3",
|
|
378
|
+
"@voidzero-dev/vite-plus-win32-x64-msvc": "0.1.16-alpha.3",
|
|
379
|
+
"@voidzero-dev/vite-plus-win32-arm64-msvc": "0.1.16-alpha.3"
|
|
380
380
|
},
|
|
381
381
|
"scripts": {
|
|
382
382
|
"build": "oxnode -C dev ./build.ts",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
Use Vite+ to manage dependencies across pnpm, npm, and
|
|
7
|
+
Use Vite+ to manage dependencies across pnpm, npm, Yarn, and Bun. Instead of switching between `pnpm install`, `npm install`, `yarn install`, and `bun install`, you can keep using `vp install`, `vp add`, `vp remove`, and the rest of the Vite+ package-management commands.
|
|
8
8
|
|
|
9
9
|
Vite+ detects the package manager from the workspace root in this order:
|
|
10
10
|
|
|
@@ -13,8 +13,10 @@ Vite+ detects the package manager from the workspace root in this order:
|
|
|
13
13
|
3. `pnpm-lock.yaml`
|
|
14
14
|
4. `yarn.lock` or `.yarnrc.yml`
|
|
15
15
|
5. `package-lock.json`
|
|
16
|
-
6.
|
|
17
|
-
7. `
|
|
16
|
+
6. `bun.lock` or `bun.lockb`
|
|
17
|
+
7. `.pnpmfile.cjs` or `pnpmfile.cjs`
|
|
18
|
+
8. `bunfig.toml`
|
|
19
|
+
9. `yarn.config.cjs`
|
|
18
20
|
|
|
19
21
|
If none of those files are present, `vp` falls back to `pnpm` by default. Vite+ automatically downloads the matching package manager and uses it for the command you ran.
|
|
20
22
|
|
|
@@ -34,7 +36,7 @@ vp install --filter web
|
|
|
34
36
|
vp install -w
|
|
35
37
|
```
|
|
36
38
|
|
|
37
|
-
`vp install` maps to the correct underlying install behavior for the detected package manager, including the right lockfile flags for pnpm, npm, and
|
|
39
|
+
`vp install` maps to the correct underlying install behavior for the detected package manager, including the right lockfile flags for pnpm, npm, Yarn, and Bun.
|
|
38
40
|
|
|
39
41
|
## Global Packages
|
|
40
42
|
|
|
@@ -34,6 +34,6 @@ Unifying the toolchain has performance benefits beyond just using faster tools o
|
|
|
34
34
|
|
|
35
35
|
## Fully Open Source
|
|
36
36
|
|
|
37
|
-
Vite+ is fully open source and not a new framework or locked-down platform. Vite+ integrates with the existing Vite ecosystem and the frameworks built on top of it, including React, Vue, Svelte, and others. It can use pnpm, npm, or
|
|
37
|
+
Vite+ is fully open source and not a new framework or locked-down platform. Vite+ integrates with the existing Vite ecosystem and the frameworks built on top of it, including React, Vue, Svelte, and others. It can use pnpm, npm, yarn, or Bun as package manager, and manages the Node.js runtime for you.
|
|
38
38
|
|
|
39
39
|
We always welcome contributions from the community. See our [Contributing Guidelines](https://github.com/voidzero-dev/vite-plus/blob/main/CONTRIBUTING.md) to get involved.
|