From a2162d778b017f65a168d61a0dee31e21beccb3d Mon Sep 17 00:00:00 2001 From: "voidzero-guard[bot]" <278573678+voidzero-guard[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 01:57:53 +0000 Subject: [PATCH] feat(deps): upgrade upstream dependencies - tsdown: 0.22.13 -> 0.22.14 - @tsdown/css: 0.22.13 -> 0.22.14 - @tsdown/exe: 0.22.13 -> 0.22.14 - @vitejs/devtools: 0.4.2 -> 0.4.5 Code changes: - Sync tsdown CLI option: add `--concurrency ` to `vp pack` (packages/cli/src/pack-bin.ts) - Update pack help snapshots for the new option (crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack/snapshots/command_pack.md, crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_helper/snapshots/command_helper.md) - Add PTY snapshot fixture covering `vp pack --concurrency` (crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/) - Bump bundled tsdown version and @vitejs/devtools dependency (packages/core/package.json) - Exclude fresh transitive deps from minimumReleaseAge (@devframes/*, verkit) (pnpm-workspace.yaml) --- .../snapshots/command_helper.md | 1 + .../command_pack/snapshots/command_pack.md | 1 + .../command_pack_concurrency/package.json | 5 + .../command_pack_concurrency/snapshots.toml | 7 + .../snapshots/command_pack_concurrency.md | 13 ++ .../command_pack_concurrency/src/index.ts | 3 + packages/cli/src/pack-bin.ts | 1 + packages/core/package.json | 4 +- pnpm-lock.yaml | 216 ++++++++++-------- pnpm-workspace.yaml | 8 +- 10 files changed, 160 insertions(+), 99 deletions(-) create mode 100644 crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/package.json create mode 100644 crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/snapshots.toml create mode 100644 crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/snapshots/command_pack_concurrency.md create mode 100644 crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/src/index.ts diff --git a/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_helper/snapshots/command_helper.md b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_helper/snapshots/command_helper.md index 3bd1dba12f..0054ca93a8 100644 --- a/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_helper/snapshots/command_helper.md +++ b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_helper/snapshots/command_helper.md @@ -86,6 +86,7 @@ Options: --root Root directory of input files --exe Bundle as executable -W, --workspace [dir] Enable workspace mode + --concurrency Maximum number of Rolldown builds to run in parallel -F, --filter Filter configs (cwd or name), e.g. /pkg-name$/ or pkg-name --exports Generate export-related metadata for package.json (experimental) -h, --help Display this message diff --git a/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack/snapshots/command_pack.md b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack/snapshots/command_pack.md index dc9dd2cabf..225deb2950 100644 --- a/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack/snapshots/command_pack.md +++ b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack/snapshots/command_pack.md @@ -53,6 +53,7 @@ Options: --root Root directory of input files --exe Bundle as executable -W, --workspace [dir] Enable workspace mode + --concurrency Maximum number of Rolldown builds to run in parallel -F, --filter Filter configs (cwd or name), e.g. /pkg-name$/ or pkg-name --exports Generate export-related metadata for package.json (experimental) -h, --help Display this message diff --git a/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/package.json b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/package.json new file mode 100644 index 0000000000..8cc4eedc51 --- /dev/null +++ b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/package.json @@ -0,0 +1,5 @@ +{ + "name": "command-pack-concurrency", + "version": "1.0.0", + "type": "module" +} diff --git a/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/snapshots.toml b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/snapshots.toml new file mode 100644 index 0000000000..ee290d9875 --- /dev/null +++ b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/snapshots.toml @@ -0,0 +1,7 @@ +[[case]] +name = "command_pack_concurrency" +vp = "local" +skip-platforms = ["windows"] +steps = [ + { argv = ["vp", "pack", "--concurrency", "1", "src/index.ts"], comment = "should bundle with tsdown --concurrency flag forwarded", continue-on-failure = true }, +] diff --git a/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/snapshots/command_pack_concurrency.md b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/snapshots/command_pack_concurrency.md new file mode 100644 index 0000000000..9b02bf41c6 --- /dev/null +++ b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/snapshots/command_pack_concurrency.md @@ -0,0 +1,13 @@ +# command_pack_concurrency + +## `vp pack --concurrency 1 src/index.ts` + +should bundle with tsdown --concurrency flag forwarded + +``` +ℹ entry: src/index.ts +ℹ Build start +ℹ dist/index.mjs kB │ gzip: kB +ℹ 1 files, total: kB +✔ Build complete in +``` diff --git a/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/src/index.ts b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/src/index.ts new file mode 100644 index 0000000000..8bef400eaf --- /dev/null +++ b/crates/vite_cli_snapshots/tests/cli_snapshots/fixtures/command_pack_concurrency/src/index.ts @@ -0,0 +1,3 @@ +import path from 'node:path'; + +console.log(path.join('a', 'b')); diff --git a/packages/cli/src/pack-bin.ts b/packages/cli/src/pack-bin.ts index 03c2e8f56c..5b12e6b545 100644 --- a/packages/cli/src/pack-bin.ts +++ b/packages/cli/src/pack-bin.ts @@ -134,6 +134,7 @@ cli .option('--root ', 'Root directory of input files') .option('--exe', 'Bundle as executable') .option('-W, --workspace [dir]', 'Enable workspace mode') + .option('--concurrency ', 'Maximum number of Rolldown builds to run in parallel') .option('-F, --filter ', 'Filter configs (cwd or name), e.g. /pkg-name$/ or pkg-name') .option('--exports', 'Generate export-related metadata for package.json (experimental)') .action(async (input: string[], flags: InlineConfig) => { diff --git a/packages/core/package.json b/packages/core/package.json index 4eff9e7c94..94c129ef4b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -116,7 +116,7 @@ "@oxc-node/core": "catalog:", "@tsdown/css": "catalog:", "@tsdown/exe": "catalog:", - "@vitejs/devtools": "^0.4.2", + "@vitejs/devtools": "^0.4.5", "es-module-lexer": "^1.7.0", "hookable": "^6.0.1", "magic-string": "^0.30.21", @@ -216,6 +216,6 @@ "bundledVersions": { "vite": "8.1.5", "rolldown": "1.2.0", - "tsdown": "0.22.13" + "tsdown": "0.22.14" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 10d058aa2d..6024bbfc55 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -52,11 +52,11 @@ catalogs: specifier: ^16.0.0 version: 16.0.3 '@tsdown/css': - specifier: ^0.22.13 - version: 0.22.13 + specifier: ^0.22.14 + version: 0.22.14 '@tsdown/exe': - specifier: ^0.22.13 - version: 0.22.13 + specifier: ^0.22.14 + version: 0.22.14 '@types/babel__core': specifier: 7.20.5 version: 7.20.5 @@ -236,7 +236,7 @@ catalogs: version: 2.34.1 rolldown-plugin-dts: specifier: ^0.27.0 - version: 0.27.12 + version: 0.27.13 rollup: specifier: ^4.60.4 version: 4.60.4 @@ -268,8 +268,8 @@ catalogs: specifier: ^1.0.1 version: 1.2.4 tsdown: - specifier: ^0.22.13 - version: 0.22.13 + specifier: ^0.22.14 + version: 0.22.14 typescript: specifier: ^6.0.0 version: 6.0.2 @@ -476,13 +476,13 @@ importers: version: 1.1.1 rolldown-plugin-dts: specifier: 'catalog:' - version: 0.27.12(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) + version: 0.27.13(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) semver: specifier: 'catalog:' version: 7.8.5 tsdown: specifier: 'catalog:' - version: 0.22.13(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.13)(@tsdown/exe@0.22.13)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) + version: 0.22.14(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.14)(@tsdown/exe@0.22.14)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) validate-npm-package-name: specifier: 'catalog:' version: 7.0.2 @@ -585,13 +585,13 @@ importers: version: 0.1.0 '@tsdown/css': specifier: 'catalog:' - version: 0.22.13(jiti@2.7.0)(postcss-import@16.1.1(postcss@8.5.20))(postcss@8.5.20)(sass-embedded@1.100.0(source-map-js@1.2.1))(sass@1.101.0)(tsdown@0.22.13)(tsx@4.23.1)(yaml@2.9.0) + version: 0.22.14(jiti@2.7.0)(postcss-import@16.1.1(postcss@8.5.20))(postcss@8.5.20)(sass-embedded@1.100.0(source-map-js@1.2.1))(sass@1.101.0)(tsdown@0.22.14)(tsx@4.23.1)(yaml@2.9.0) '@tsdown/exe': specifier: 'catalog:' - version: 0.22.13(tsdown@0.22.13) + version: 0.22.14(tsdown@0.22.14) '@vitejs/devtools': - specifier: ^0.4.2 - version: 0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core) + specifier: ^0.4.5 + version: 0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core) es-module-lexer: specifier: ^1.7.0 version: 1.7.0 @@ -621,7 +621,7 @@ importers: version: link:../../rolldown/packages/rolldown rolldown-plugin-dts: specifier: 'catalog:' - version: 0.27.12(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) + version: 0.27.13(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) rollup: specifier: ^4.18.0 version: 4.60.4 @@ -639,7 +639,7 @@ importers: version: 1.2.2 tsdown: specifier: 'catalog:' - version: 0.22.13(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.13)(@tsdown/exe@0.22.13)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) + version: 0.22.14(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.14)(@tsdown/exe@0.22.14)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) vite: specifier: workspace:@voidzero-dev/vite-plus-core@* version: 'link:' @@ -671,7 +671,7 @@ importers: version: 1.3.0 tsdown: specifier: 'catalog:' - version: 0.22.13(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.13)(@tsdown/exe@0.22.13)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) + version: 0.22.14(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.14)(@tsdown/exe@0.22.14)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) packages/tools: devDependencies: @@ -859,7 +859,7 @@ importers: version: 'link:' rolldown-plugin-dts: specifier: 'catalog:' - version: 0.27.12(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) + version: 0.27.13(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) rollup: specifier: 'catalog:' version: 4.60.4 @@ -1065,7 +1065,7 @@ importers: version: 1.2.0 tsdown: specifier: ^0.22.5 - version: 0.22.13(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.13)(@tsdown/exe@0.22.13)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) + version: 0.22.14(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.14)(@tsdown/exe@0.22.14)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) unrun: specifier: ^0.3.1 version: 0.3.1 @@ -1120,7 +1120,7 @@ importers: version: 1.1.1 tsdown: specifier: ^0.22.5 - version: 0.22.13(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.13)(@tsdown/exe@0.22.13)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) + version: 0.22.14(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.14)(@tsdown/exe@0.22.14)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) unrun: specifier: ^0.3.1 version: 0.3.1 @@ -1307,7 +1307,7 @@ importers: version: 2.0.3 rolldown-plugin-dts: specifier: ^0.27.6 - version: 0.27.12(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) + version: 0.27.13(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) rollup: specifier: ^4.59.0 version: 4.60.4 @@ -2027,37 +2027,46 @@ packages: peerDependencies: devframe: 0.5.4 - '@devframes/hub@0.7.5': - resolution: {integrity: sha512-+DSelDB/zQOyVGL8e9txvspVOvJKcNMyq6cR9bzzPMal7K9hOkedD6whR3X6EmwFjQjAOvQN1Xrm+0WWz5NPgw==} + '@devframes/hub@0.7.11': + resolution: {integrity: sha512-r+qyGg0Hu1w1q7mNDCmuZUryeZAi2sUC8FTwEbwjqPT5SGjWnIoj1rMmRbJIOIBaC+2ofOejTGel4jklmzHc3w==} peerDependencies: - devframe: 0.7.5 + devframe: 0.7.11 - '@devframes/plugin-inspect@0.7.5': - resolution: {integrity: sha512-t9dt5TjLMSLVtyTtSPzciptZhOeaK2lUfSyZ169fKhaJem38gsJdej5NKEyuWP3T3CDdtH/zqiFyEAef8bk/ng==} + '@devframes/json-render@0.7.11': + resolution: {integrity: sha512-Iza65fq6U9OSxKUEhGokfpfMz21ISLkWF9jeS0bQHugTLKRGcPRO/tu3YE+nTe6EiKP3kQFBvSNZ1FcZ1FPfSg==} + peerDependencies: + '@devframes/hub': 0.7.11 + devframe: 0.7.11 + peerDependenciesMeta: + '@devframes/hub': + optional: true + + '@devframes/plugin-inspect@0.7.11': + resolution: {integrity: sha512-eL1zFUqr65PFORTlBmdJuV7VlqUed5AXRG8SB9ofRyyiauvEWX31PUMD5g6DnZyJBztq97pCxiB0X4AIXNGmeg==} hasBin: true peerDependencies: - devframe: 0.7.5 + devframe: 0.7.11 vite: workspace:@voidzero-dev/vite-plus-core@* peerDependenciesMeta: vite: optional: true - '@devframes/plugin-messages@0.7.5': - resolution: {integrity: sha512-xPwy3/q6spdSNAtEHk5/8paWSLit8BqdH0DOaYldJv7OOfEzDel0HYLZ3L0kM9S82KNFvFSRm5v4beVIQavwpg==} + '@devframes/plugin-messages@0.7.11': + resolution: {integrity: sha512-7Hbgtlo84g6gp5xUOzxKWuBVVBQmT5QswzQ3K2Ax6nZyYO9kGdjDrdGrIWxH5D3acEvzxJw1ixgoRDHPmNtQSQ==} hasBin: true peerDependencies: - '@devframes/hub': 0.7.5 - devframe: 0.7.5 + '@devframes/hub': 0.7.11 + devframe: 0.7.11 vite: workspace:@voidzero-dev/vite-plus-core@* peerDependenciesMeta: vite: optional: true - '@devframes/plugin-terminals@0.7.5': - resolution: {integrity: sha512-4gQaR2u0WLWGnylpfBO3UfyeqIQq9tWQUq8El9YJgi9DrZyBI74LH2MRwr+Y6SkZPFNmPWpaDgpjY+GeX4bVUg==} + '@devframes/plugin-terminals@0.7.11': + resolution: {integrity: sha512-eeUvY0IyBJ2Ao529Wwn/7tgXIrtVyXs5kfPRtsLiFq9/gAl4fmS0Lj4FXX0fpFFrbjraazj7Z9AIlBaPLVp83A==} hasBin: true peerDependencies: - devframe: 0.7.5 + devframe: 0.7.11 vite: workspace:@voidzero-dev/vite-plus-core@* peerDependenciesMeta: vite: @@ -2486,6 +2495,11 @@ packages: '@jridgewell/trace-mapping@0.3.31': resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} + '@json-render/core@0.19.0': + resolution: {integrity: sha512-vvcyZ+10EDZKbEyB1J2kXOGfDaiZR2LurZGSqi2r5STHyKr+Te85DWaBxTwRGgM7U1LtIvNx85BzzjElRKoAIg==} + peerDependencies: + zod: ^4.0.0 + '@loaderkit/resolve@1.0.4': resolution: {integrity: sha512-rJzYKVcV4dxJv+vW6jlvagF8zvGxHJ2+HTr1e2qOejfmGhAApgJHl8Aog4mMszxceTRiKTTbnpgmTO1bEZHV/A==} @@ -4442,8 +4456,8 @@ packages: '@tootallnate/quickjs-emscripten@0.23.0': resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} - '@tsdown/css@0.22.13': - resolution: {integrity: sha512-4Ehe/ys/1EXEgzk0ijt/AUxxM8UCEFmErq8+wWscBCceDwDMW7L4hbt4l9xixwjv+0V8friwRt67UKWAwtXxog==} + '@tsdown/css@0.22.14': + resolution: {integrity: sha512-0NpbgqfhfjaAoLdY3DxjrMo08vKFEtvlybCS42Gtolx8OPoKUdZZDyls0qgNEqea0c7XGjlF0NIE1tIxgU8RqA==} engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: postcss: ^8.4.0 @@ -4451,7 +4465,7 @@ packages: postcss-modules: ^6.0.0 sass: '*' sass-embedded: '*' - tsdown: 0.22.13 + tsdown: 0.22.14 peerDependenciesMeta: postcss: optional: true @@ -4464,11 +4478,11 @@ packages: sass-embedded: optional: true - '@tsdown/exe@0.22.13': - resolution: {integrity: sha512-gxfhuWS4vZSzCRJZJJtRCvRyipX4AwxeU3NpwXrixL+59AU19SOkveBE9G/Z6i6VVaIlnC5WBBPESKIq49nNAw==} + '@tsdown/exe@0.22.14': + resolution: {integrity: sha512-5BcuRfxrjjIin2MmHnspwkKxXx3o5oA33QLbuGMPmJlOScJOtl04mzUXn4ICeUoxUpOYkszltaYXV5TPMzDRrg==} engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: - tsdown: 0.22.13 + tsdown: 0.22.14 '@tybys/wasm-util@0.10.3': resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==} @@ -4830,8 +4844,8 @@ packages: peerDependencies: vite: workspace:@voidzero-dev/vite-plus-core@* - '@vitejs/devtools-kit@0.4.2': - resolution: {integrity: sha512-/8F2+O2yxzGd2fFKVUrKNpcoKjdfomHeFs0hzrAiRqZCB/qxKID3u8HnrFl0KquDOsiIKpf/VEU35Bu5ZBWZ/w==} + '@vitejs/devtools-kit@0.4.5': + resolution: {integrity: sha512-fBjJ8Dyv0XvtyxxWyraah3+WC+7QDePfRQZ60Hh+gS0KrbuvgxoESiBVikE5IG9hwy03WliOM4yPWO/sVRP3+A==} peerDependencies: vite: workspace:@voidzero-dev/vite-plus-core@* @@ -4844,14 +4858,14 @@ packages: peerDependencies: vite: workspace:@voidzero-dev/vite-plus-core@* - '@vitejs/devtools@0.4.2': - resolution: {integrity: sha512-RIa10PerFxYtN7NLLhCQ/hPJ+OSSH2PNdRrvZ6v114HtoGC62kSfR5LZtdFMkVKr6tvZvLdNbwRxP9KPS1X8vA==} + '@vitejs/devtools@0.4.5': + resolution: {integrity: sha512-jBawA1bnLhlUYNmVBVP94rOzezsa68kTaYD1+zVExzHG1xNp4udYnbbKLjjRtaMlZAOYwahwqhblrdNyr/fqPA==} hasBin: true peerDependencies: - '@vitejs/devtools-oxc': ^0.4.2 - '@vitejs/devtools-rolldown': ^0.4.2 - '@vitejs/devtools-vite': ^0.4.2 - '@vitejs/devtools-vitest': ^0.4.2 + '@vitejs/devtools-oxc': ^0.4.5 + '@vitejs/devtools-rolldown': ^0.4.5 + '@vitejs/devtools-vite': ^0.4.5 + '@vitejs/devtools-vitest': ^0.4.5 vite: workspace:@voidzero-dev/vite-plus-core@* peerDependenciesMeta: '@vitejs/devtools-oxc': @@ -5932,8 +5946,8 @@ packages: '@modelcontextprotocol/sdk': optional: true - devframe@0.7.5: - resolution: {integrity: sha512-NdP655Am1VGTwt5ynArBmX4gs7MDdGy0fBqQngZLfs0HPhz7vveODUu01YDP/nEH7uIo+fVCieIYeITmJl/P/A==} + devframe@0.7.11: + resolution: {integrity: sha512-EC65NA7B1Q1H0daTMiPn2BLCjekIVC8V1WvoPyXAM/pBhNGGlRRaSVSfmAsaYmqSDT3osD8nWZ6KYhExU2KOfA==} peerDependencies: '@modelcontextprotocol/sdk': ^1.0.0 cac: ^7.0.0 @@ -7750,8 +7764,8 @@ packages: rgb2hex@0.2.5: resolution: {integrity: sha512-22MOP1Rh7sAo1BZpDG6R5RFYzR2lYEgwq7HEmyW2qcsOqR2lQKmn+O//xV3YG/0rrhMC6KVX2hU+ZXuaw9a5bw==} - rolldown-plugin-dts@0.27.12: - resolution: {integrity: sha512-DJg5ELVEdLAVhirvtak7GS4nbNvBzLNAtYL1M8hLghDURBFKU2MwEH6ncHibYs6khq1NaRQ97iFMiHvzw+WoSw==} + rolldown-plugin-dts@0.27.13: + resolution: {integrity: sha512-DeVZJbbB0ajp5q6vABqC8ZCJzxftlxbiV60Bk96GFdQaysGVpgTTVjQu0lUt4Lb+aRCtejfOixtQKDRol7IuVQ==} engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: '@typescript/native-preview': '*' @@ -8330,14 +8344,14 @@ packages: peerDependencies: typescript: '>=4.0.0' - tsdown@0.22.13: - resolution: {integrity: sha512-XaYFhtiKRUvTpXv/YAehsHdbEb3LN/iMlzjSINbjlaATtXN2zVPKox2STKhcyFPlh++8Zg7suNN27E679IfAUA==} + tsdown@0.22.14: + resolution: {integrity: sha512-ule7Y+fsAN2iZbLDoo7C4KYljFJNJJ+fLshyn+9gozeTspVersWHxwdGB+Dm2hzA38s6muFnUTl0jK3vJm9ifQ==} engines: {node: ^22.18.0 || >=24.11.0} hasBin: true peerDependencies: '@arethetypeswrong/core': ^0.18.1 - '@tsdown/css': 0.22.13 - '@tsdown/exe': 0.22.13 + '@tsdown/css': 0.22.14 + '@tsdown/exe': 0.22.14 '@vitejs/devtools': '*' publint: ^0.3.8 tsx: '*' @@ -8631,8 +8645,8 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} - verkit@0.1.2: - resolution: {integrity: sha512-WqkT8n3hqizuCu71W3bUzf5fjBmkbXcudsehe/NbxA8PgqoKnSOY5K0Ba2ckg1qaRaSpSz7as/n9K1R9JXjQKg==} + verkit@0.3.0: + resolution: {integrity: sha512-Njrh4U8UODGajoZ44QS2C/BsoEM9DTI/aCqY5swsizb+/ap0FamvnCMcZAxrR5+aoC0ZqkawEfpC/N2SBc+xeA==} engines: {node: '>=18.12.0'} vitest@4.1.10: @@ -8902,8 +8916,8 @@ packages: zod@3.25.76: resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} - zod@4.3.5: - resolution: {integrity: sha512-k7Nwx6vuWx1IJ9Bjuf4Zt1PEllcwe7cls3VNzm4CQ1/hgtFUK2bRNG3rvnpPUhFjmqJKAKtjV576KnUkHocg/g==} + zod@4.4.3: + resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==} snapshots: @@ -9757,43 +9771,52 @@ snapshots: perfect-debounce: 2.1.0 tinyexec: 1.2.4 - '@devframes/hub@0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))': + '@devframes/hub@0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))': dependencies: birpc: 4.0.0 destr: 2.0.5 - devframe: 0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) + devframe: 0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) nostics: 1.2.0 pathe: 2.0.3 perfect-debounce: 2.1.0 tinyexec: 1.2.4 zigpty: 0.2.1 - '@devframes/plugin-inspect@0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(valibot@1.4.2(typescript@6.0.2))(vite@packages+core)': + '@devframes/json-render@0.7.11(@devframes/hub@0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)))(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))': + dependencies: + '@json-render/core': 0.19.0(zod@4.4.3) + devframe: 0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) + nostics: 1.2.0 + zod: 4.4.3 + optionalDependencies: + '@devframes/hub': 0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)) + + '@devframes/plugin-inspect@0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(valibot@1.4.2(typescript@6.0.2))(vite@packages+core)': dependencies: '@valibot/to-json-schema': 1.7.1(valibot@1.4.2(typescript@6.0.2)) cac: 7.0.0 - devframe: 0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) + devframe: 0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) nostics: 1.2.0 optionalDependencies: vite: link:packages/core transitivePeerDependencies: - valibot - '@devframes/plugin-messages@0.7.5(@devframes/hub@0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)))(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(vite@packages+core)': + '@devframes/plugin-messages@0.7.11(@devframes/hub@0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)))(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(vite@packages+core)': dependencies: - '@devframes/hub': 0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)) + '@devframes/hub': 0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)) cac: 7.0.0 - devframe: 0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) + devframe: 0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) nostics: 1.2.0 optionalDependencies: vite: link:packages/core - '@devframes/plugin-terminals@0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(typescript@6.0.2)(vite@packages+core)': + '@devframes/plugin-terminals@0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(typescript@6.0.2)(vite@packages+core)': dependencies: '@xterm/addon-fit': 0.11.0 '@xterm/xterm': 6.0.0 cac: 7.0.0 - devframe: 0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) + devframe: 0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) nostics: 1.2.0 pathe: 2.0.3 valibot: 1.4.2(typescript@6.0.2) @@ -10291,6 +10314,10 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.5 + '@json-render/core@0.19.0(zod@4.4.3)': + dependencies: + zod: 4.4.3 + '@loaderkit/resolve@1.0.4': dependencies: '@braidai/lang': 1.1.2 @@ -11646,12 +11673,12 @@ snapshots: '@tootallnate/quickjs-emscripten@0.23.0': {} - '@tsdown/css@0.22.13(jiti@2.7.0)(postcss-import@16.1.1(postcss@8.5.20))(postcss@8.5.20)(sass-embedded@1.100.0(source-map-js@1.2.1))(sass@1.101.0)(tsdown@0.22.13)(tsx@4.23.1)(yaml@2.9.0)': + '@tsdown/css@0.22.14(jiti@2.7.0)(postcss-import@16.1.1(postcss@8.5.20))(postcss@8.5.20)(sass-embedded@1.100.0(source-map-js@1.2.1))(sass@1.101.0)(tsdown@0.22.14)(tsx@4.23.1)(yaml@2.9.0)': dependencies: lightningcss: 1.33.0 postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.20)(tsx@4.23.1)(yaml@2.9.0) rolldown: link:rolldown/packages/rolldown - tsdown: 0.22.13(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.13)(@tsdown/exe@0.22.13)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) + tsdown: 0.22.14(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.14)(@tsdown/exe@0.22.14)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) optionalDependencies: postcss: 8.5.20 postcss-import: 16.1.1(postcss@8.5.20) @@ -11662,12 +11689,12 @@ snapshots: - tsx - yaml - '@tsdown/exe@0.22.13(tsdown@0.22.13)': + '@tsdown/exe@0.22.14(tsdown@0.22.14)': dependencies: obug: 2.1.4 tinyexec: 1.2.4 - tsdown: 0.22.13(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.13)(@tsdown/exe@0.22.13)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) - verkit: 0.1.2 + tsdown: 0.22.14(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.14)(@tsdown/exe@0.22.14)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1) + verkit: 0.3.0 '@tybys/wasm-util@0.10.3': dependencies: @@ -12016,10 +12043,11 @@ snapshots: - typescript - utf-8-validate - '@vitejs/devtools-kit@0.4.2(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)(vite@packages+core)': + '@vitejs/devtools-kit@0.4.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)(vite@packages+core)': dependencies: - '@devframes/hub': 0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)) - devframe: 0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) + '@devframes/hub': 0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)) + '@devframes/json-render': 0.7.11(@devframes/hub@0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)))(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)) + devframe: 0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) local-pkg: 1.2.1 mlly: 1.8.2 nostics: 1.2.0 @@ -12126,16 +12154,16 @@ snapshots: - uploadthing - utf-8-validate - '@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core)': + '@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core)': dependencies: - '@devframes/hub': 0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)) - '@devframes/plugin-inspect': 0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(valibot@1.4.2(typescript@6.0.2))(vite@packages+core) - '@devframes/plugin-messages': 0.7.5(@devframes/hub@0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)))(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(vite@packages+core) - '@devframes/plugin-terminals': 0.7.5(devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(typescript@6.0.2)(vite@packages+core) - '@vitejs/devtools-kit': 0.4.2(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)(vite@packages+core) + '@devframes/hub': 0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)) + '@devframes/plugin-inspect': 0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(valibot@1.4.2(typescript@6.0.2))(vite@packages+core) + '@devframes/plugin-messages': 0.7.11(@devframes/hub@0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)))(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(vite@packages+core) + '@devframes/plugin-terminals': 0.7.11(devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2))(typescript@6.0.2)(vite@packages+core) + '@vitejs/devtools-kit': 0.4.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2)(vite@packages+core) birpc: 4.0.0 cac: 7.0.0 - devframe: 0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) + devframe: 0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2) h3: 2.0.1-rc.22(crossws@0.4.10(srvx@0.11.15)) local-pkg: 1.2.1 mlly: 1.8.2 @@ -13198,7 +13226,7 @@ snapshots: - typescript - utf-8-validate - devframe@0.7.5(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2): + devframe@0.7.11(cac@7.0.0)(srvx@0.11.15)(typescript@6.0.2): dependencies: '@valibot/to-json-schema': 1.7.1(valibot@1.4.2(typescript@6.0.2)) birpc: 4.0.0 @@ -14113,7 +14141,7 @@ snapshots: tinyglobby: 0.2.17 unbash: 4.0.2 yaml: 2.9.0 - zod: 4.3.5 + zod: 4.4.3 launch-editor-middleware@2.14.1: dependencies: @@ -15182,7 +15210,7 @@ snapshots: rgb2hex@0.2.5: {} - rolldown-plugin-dts@0.27.12(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2): + rolldown-plugin-dts@0.27.13(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2): dependencies: dts-resolver: 3.0.0(oxc-resolver@11.21.3) get-tsconfig: 5.0.0-beta.5 @@ -15752,7 +15780,7 @@ snapshots: typescript: 6.0.2 optional: true - tsdown@0.22.13(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.13)(@tsdown/exe@0.22.13)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1): + tsdown@0.22.14(@arethetypeswrong/core@0.18.2)(@tsdown/css@0.22.14)(@tsdown/exe@0.22.14)(@typescript/native-preview@7.0.0-dev.20260605.1)(@vitejs/devtools@0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core))(oxc-resolver@11.21.3)(publint@0.3.21)(tsx@4.23.1)(typescript@6.0.2)(unplugin-unused@0.5.6)(unrun@0.3.1): dependencies: ansis: 4.3.1 cac: 7.0.0 @@ -15763,17 +15791,17 @@ snapshots: obug: 2.1.4 picomatch: 4.0.5 rolldown: link:rolldown/packages/rolldown - rolldown-plugin-dts: 0.27.12(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) + rolldown-plugin-dts: 0.27.13(@typescript/native-preview@7.0.0-dev.20260605.1)(oxc-resolver@11.21.3)(rolldown@rolldown+packages+rolldown)(typescript@6.0.2) tinyexec: 1.2.4 tinyglobby: 0.2.17 tree-kill: 1.2.2 unconfig-core: 7.5.0 - verkit: 0.1.2 + verkit: 0.3.0 optionalDependencies: '@arethetypeswrong/core': 0.18.2 - '@tsdown/css': 0.22.13(jiti@2.7.0)(postcss-import@16.1.1(postcss@8.5.20))(postcss@8.5.20)(sass-embedded@1.100.0(source-map-js@1.2.1))(sass@1.101.0)(tsdown@0.22.13)(tsx@4.23.1)(yaml@2.9.0) - '@tsdown/exe': 0.22.13(tsdown@0.22.13) - '@vitejs/devtools': 0.4.2(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core) + '@tsdown/css': 0.22.14(jiti@2.7.0)(postcss-import@16.1.1(postcss@8.5.20))(postcss@8.5.20)(sass-embedded@1.100.0(source-map-js@1.2.1))(sass@1.101.0)(tsdown@0.22.14)(tsx@4.23.1)(yaml@2.9.0) + '@tsdown/exe': 0.22.14(tsdown@0.22.14) + '@vitejs/devtools': 0.4.5(crossws@0.4.10(srvx@0.11.15))(srvx@0.11.15)(typescript@6.0.2)(valibot@1.4.2(typescript@6.0.2))(vite@packages+core) publint: 0.3.21 tsx: 4.23.1 typescript: 6.0.2 @@ -15982,7 +16010,7 @@ snapshots: vary@1.1.2: {} - verkit@0.1.2: {} + verkit@0.3.0: {} vitest@4.1.10(@edge-runtime/vm@5.0.0)(@opentelemetry/api@1.9.0)(@types/node@24.10.3)(@vitest/browser-playwright@4.1.10)(@vitest/browser-preview@4.1.10)(@vitest/browser-webdriverio@4.1.10)(happy-dom@20.0.10)(jsdom@27.2.0)(vite@packages+core): dependencies: @@ -16367,4 +16395,4 @@ snapshots: zod@3.25.76: {} - zod@4.3.5: {} + zod@4.4.3: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index e753d7ed6d..e29cf70a37 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -24,8 +24,8 @@ catalog: '@rollup/plugin-commonjs': ^29.0.0 '@rollup/plugin-json': ^6.1.0 '@rollup/plugin-node-resolve': ^16.0.0 - '@tsdown/css': ^0.22.13 - '@tsdown/exe': ^0.22.13 + '@tsdown/css': ^0.22.14 + '@tsdown/exe': ^0.22.14 '@types/babel__core': 7.20.5 '@types/connect': ^3.4.38 '@types/cross-spawn': ^6.0.6 @@ -118,7 +118,7 @@ catalog: terser: ^5.44.1 tinybench: ^6.0.0 tinyexec: ^1.0.1 - tsdown: ^0.22.13 + tsdown: ^0.22.14 tsx: ^4.22.0 typescript: ^6.0.0 unified: ^11.0.5 @@ -143,6 +143,7 @@ ignoreScripts: true minimumReleaseAge: 1440 minimumReleaseAgeExclude: - '@babel/*' + - '@devframes/*' - '@napi-rs/*' - '@nkzw/*' - '@oxc-node/*' @@ -182,6 +183,7 @@ minimumReleaseAgeExclude: - tsdown - tsx - unrun + - verkit - vite - vitepress - vitest