Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
approvedGitRepositories:
- "**"
- '**'

catalog:
"@types/node": "npm:@types/node@24.12.2"
vite: "npm:@voidzero-dev/vite-plus-core@0.1.24"
vite-plus: 0.1.24
vitest: "npm:@voidzero-dev/vite-plus-test@0.1.24"
'@types/node': 'npm:@types/node@24.12.2'
vite: npm:@voidzero-dev/vite-plus-core@0.0.0-commit.0fecc75a64a39bc5600ff6a1cee8baff378a8cc1
vite-plus: 0.0.0-commit.0fecc75a64a39bc5600ff6a1cee8baff378a8cc1
vitest: 4.1.9

enableScripts: true

Expand All @@ -15,6 +15,10 @@ npmMinimalAgeGate: 0

npmScopes:
jsr:
npmRegistryServer: "https://npm.jsr.io"
npmRegistryServer: 'https://npm.jsr.io'

yarnPath: .yarn/releases/yarn-4.17.0.cjs
npmPreapprovedPackages:
- vitest
- '@vitest/*'
npmRegistryServer: https://registry-bridge.viteplus.dev/
6 changes: 1 addition & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ serde = { version = "1", features = ["derive"] }
thiserror = "2"
tokio = { version = "1.48", features = ["rt-multi-thread", "macros", "sync"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.19", default-features = false, features = [
"std",
"fmt",
"json",
] }
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["std", "fmt", "json"] }
tokenizers = "0.23"
minijinja = { version = "2.5", features = ["json", "preserve_order"] }
uuid = { version = "1.11", features = ["v4"] }
Expand Down
2 changes: 1 addition & 1 deletion __test__/server/model-work-coordinator.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, expect, it } from 'vitest';
import { describe, expect, it } from 'vite-plus/test';

import { ModelWorkCoordinator } from '../../packages/server/src/model-work-coordinator.js';

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
"oxc-parser": "^0.137.0",
"prettier": "^3.8.4",
"typescript": "^6.0.3",
"vite-plus": "0.1.24",
"vitest": "^4.1.9"
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"resolutions": {
"vite": "npm:@voidzero-dev/vite-plus-core@0.1.24",
"vitest": "npm:@voidzero-dev/vite-plus-test@0.1.24"
"vite": "npm:@voidzero-dev/vite-plus-core@0.0.0-commit.0fecc75a64a39bc5600ff6a1cee8baff378a8cc1",
"vitest": "4.1.9"
},
"packageManager": "yarn@4.17.0"
}
2 changes: 1 addition & 1 deletion packages/lm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"scripts": {
"build": "tsc -b",
"test": "vite test run"
"test": "vp test run"
},
"dependencies": {
"@mlx-node/core": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion packages/privacy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"scripts": {
"build": "tsc -b",
"test": "vite test run"
"test": "vp test run"
},
"dependencies": {
"@mlx-node/core": "workspace:*"
Expand Down
4 changes: 2 additions & 2 deletions packages/trl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
},
"scripts": {
"build": "tsc -b",
"test": "vite test run",
"test:trainer": "TEST_TRAINER=1 vite test run"
"test": "vp test run",
"test:trainer": "TEST_TRAINER=1 vp test run"
},
"dependencies": {
"@mlx-node/core": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/vlm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"scripts": {
"build": "tsc -b",
"test": "vite test run"
"test": "vp test run"
},
"dependencies": {
"@mlx-node/core": "workspace:*",
Expand Down
Loading
Loading