vite-plus 0.1.19-alpha.1 → 0.1.19-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.
@@ -4,7 +4,7 @@ import { a as require_cross_spawn, i as runCommandSilently, n as hasBaseUrlInTsc
4
4
  import { t as accent } from "./terminal-P9aw9Fib.js";
5
5
  import { t as require_dist } from "./dist-Dkzst9fl.js";
6
6
  import { c as readJsonFile, n as detectPackageMetadata, o as editJsonFile, s as isJsonFile } from "./package-D_LD1iiI.js";
7
- import { n as addMigrationWarning, t as addManualStep } from "./report-DHdnkZbA.js";
7
+ import { n as addMigrationWarning, t as addManualStep } from "./report-DbrfjWiP.js";
8
8
  import path from "node:path";
9
9
  import { downloadPackageManager, mergeJsonConfig, mergeTsdownConfig, rewriteEslint, rewriteImportsInDirectory, rewritePrettier, rewriteScripts } from "../binding/index.js";
10
10
  import fs from "node:fs";
@@ -3744,6 +3744,64 @@ function cleanupDeprecatedTsconfigOptions(projectPath, silent = false, report) {
3744
3744
  warnMigration(`Removed \`"${name}": false\` from ${displayRelative(filePath)} — this option has been deprecated. See https://github.com/oxc-project/tsgolint/issues/351, https://github.com/microsoft/TypeScript/issues/62529`, report);
3745
3745
  }
3746
3746
  }
3747
+ const FRAMEWORK_SHIMS = {
3748
+ vue: [
3749
+ "declare module '*.vue' {",
3750
+ " import type { DefineComponent } from 'vue';",
3751
+ " const component: DefineComponent<{}, {}, unknown>;",
3752
+ " export default component;",
3753
+ "}"
3754
+ ].join("\n"),
3755
+ astro: "/// <reference types=\"astro/client\" />"
3756
+ };
3757
+ function detectFramework(projectPath) {
3758
+ const packageJsonPath = path.join(projectPath, "package.json");
3759
+ if (!fs.existsSync(packageJsonPath)) return [];
3760
+ const pkg = readJsonFile(packageJsonPath);
3761
+ const allDeps = {
3762
+ ...pkg.dependencies,
3763
+ ...pkg.devDependencies
3764
+ };
3765
+ return ["vue", "astro"].filter((framework) => !!allDeps[framework]);
3766
+ }
3767
+ function getEnvDtsPath(projectPath) {
3768
+ const srcEnvDts = path.join(projectPath, "src", "env.d.ts");
3769
+ const rootEnvDts = path.join(projectPath, "env.d.ts");
3770
+ for (const candidate of [srcEnvDts, rootEnvDts]) if (fs.existsSync(candidate)) return candidate;
3771
+ return fs.existsSync(path.join(projectPath, "src")) ? srcEnvDts : rootEnvDts;
3772
+ }
3773
+ function hasFrameworkShim(projectPath, framework) {
3774
+ const dirsToScan = [projectPath, path.join(projectPath, "src")];
3775
+ for (const dir of dirsToScan) {
3776
+ if (!fs.existsSync(dir)) continue;
3777
+ let entries;
3778
+ try {
3779
+ entries = fs.readdirSync(dir);
3780
+ } catch {
3781
+ continue;
3782
+ }
3783
+ for (const entry of entries) {
3784
+ if (!entry.endsWith(".d.ts")) continue;
3785
+ const content = fs.readFileSync(path.join(dir, entry), "utf-8");
3786
+ if (framework === "astro") {
3787
+ if (content.includes("astro/client")) return true;
3788
+ } else if (content.includes(`'*.${framework}'`) || content.includes(`"*.${framework}"`)) return true;
3789
+ }
3790
+ }
3791
+ return false;
3792
+ }
3793
+ function addFrameworkShim(projectPath, framework, report) {
3794
+ const envDtsPath = getEnvDtsPath(projectPath);
3795
+ const shim = FRAMEWORK_SHIMS[framework];
3796
+ if (fs.existsSync(envDtsPath)) {
3797
+ const existing = fs.readFileSync(envDtsPath, "utf-8");
3798
+ fs.writeFileSync(envDtsPath, `${existing.trimEnd()}\n\n${shim}\n`, "utf-8");
3799
+ } else {
3800
+ fs.mkdirSync(path.dirname(envDtsPath), { recursive: true });
3801
+ fs.writeFileSync(envDtsPath, `${shim}\n`, "utf-8");
3802
+ }
3803
+ if (report) report.frameworkShimAdded = true;
3804
+ }
3747
3805
  /**
3748
3806
  * Rewrite standalone project to add vite-plus dependencies
3749
3807
  * @param projectPath - The path to the project
@@ -5003,4 +5061,4 @@ function getMarkedRange(content, startMarker, endMarker) {
5003
5061
  };
5004
5062
  }
5005
5063
  //#endregion
5006
- export { selectPackageManager as A, log as B, readYamlFile as C, promptGitHooks as D, downloadPackageManager$1 as E, PackageManager as F, text as G, outro as H, require_semver as I, require_picocolors as K, cancel as L, displayRelative as M, templatesDir as N, runViteFmt as O, DependencyType as P, confirm as R, editYamlFile as S, defaultInteractive as T, select as U, multiselect as V, spinner as W, migratePrettierToOxfmt as _, writeAgentInstructions as a, rewriteMonorepoProject as b, detectEslintProject as c, ensurePreCommitHook as d, hasStagedConfigInViteConfig as f, migrateNodeVersionManagerFile as g, migrateEslintToOxlint as h, updateExistingAgentInstructions as i, upgradeYarn as j, runViteInstall as k, detectNodeVersionManagerFile as l, mergeViteConfigFiles as m, detectExistingAgentTargetPaths as n, checkViteVersion as o, installGitHooks as p, q, selectAgentTargetPaths as r, checkVitestVersion as s, detectAgentConflicts as t, detectPrettierProject as u, preflightGitHooksSetup as v, cancelAndExit as w, rewriteStandaloneProject as x, rewriteMonorepo as y, intro as z };
5064
+ export { promptGitHooks as A, cancel as B, rewriteMonorepoProject as C, cancelAndExit as D, readYamlFile as E, displayRelative as F, outro as G, intro as H, templatesDir as I, text as J, select as K, DependencyType as L, runViteInstall as M, selectPackageManager as N, defaultInteractive as O, upgradeYarn as P, PackageManager as R, rewriteMonorepo as S, editYamlFile as T, log as U, confirm as V, multiselect as W, q as X, require_picocolors as Y, mergeViteConfigFiles as _, writeAgentInstructions as a, migratePrettierToOxfmt as b, checkVitestVersion as c, detectNodeVersionManagerFile as d, detectPrettierProject as f, installGitHooks as g, hasStagedConfigInViteConfig as h, updateExistingAgentInstructions as i, runViteFmt as j, downloadPackageManager$1 as k, detectEslintProject as l, hasFrameworkShim as m, detectExistingAgentTargetPaths as n, addFrameworkShim as o, ensurePreCommitHook as p, spinner as q, selectAgentTargetPaths as r, checkViteVersion as s, detectAgentConflicts as t, detectFramework as u, migrateEslintToOxlint as v, rewriteStandaloneProject as w, preflightGitHooksSetup as x, migrateNodeVersionManagerFile as y, require_semver as z };
@@ -1,4 +1,4 @@
1
- import { n as addMigrationWarning } from "./report-DHdnkZbA.js";
1
+ import { n as addMigrationWarning } from "./report-DbrfjWiP.js";
2
2
  //#region src/migration/compat.ts
3
3
  /**
4
4
  * Check for Rolldown-incompatible manualChunks config patterns.
@@ -1,5 +1,5 @@
1
1
  import { r as log } from "../terminal-P9aw9Fib.js";
2
- import { D as promptGitHooks, T as defaultInteractive, d as ensurePreCommitHook, f as hasStagedConfigInViteConfig, i as updateExistingAgentInstructions } from "../agent-Ctkv5amd.js";
2
+ import { A as promptGitHooks, O as defaultInteractive, h as hasStagedConfigInViteConfig, i as updateExistingAgentInstructions, p as ensurePreCommitHook } from "../agent-iabUQh_f.js";
3
3
  import { t as lib_default } from "../lib-BamM40b7.js";
4
4
  import { t as renderCliDoc } from "../help-BtkjXtRM.js";
5
5
  import { join } from "node:path";
@@ -1,10 +1,10 @@
1
1
  import { r as __toESM, t as __commonJSMin } from "../chunk-q7NCDQ7-.js";
2
2
  import { a as require_cross_spawn } from "../tsconfig-DQTf06oN.js";
3
3
  import { a as success, i as muted, r as log, t as accent } from "../terminal-P9aw9Fib.js";
4
- import { A as selectPackageManager, B as log$1, D as promptGitHooks, E as downloadPackageManager$1, F as PackageManager, G as text, K as require_picocolors, L as cancel, M as displayRelative, N as templatesDir, O as runViteFmt, P as DependencyType, R as confirm, T as defaultInteractive, U as select, V as multiselect, W as spinner, a as writeAgentInstructions, b as rewriteMonorepoProject, k as runViteInstall, n as detectExistingAgentTargetPaths, p as installGitHooks, q, r as selectAgentTargetPaths, x as rewriteStandaloneProject, y as rewriteMonorepo, z as intro } from "../agent-Ctkv5amd.js";
4
+ import { A as promptGitHooks, B as cancel, C as rewriteMonorepoProject, F as displayRelative, H as intro, I as templatesDir, J as text, K as select, L as DependencyType, M as runViteInstall, N as selectPackageManager, O as defaultInteractive, R as PackageManager, S as rewriteMonorepo, U as log$1, V as confirm, W as multiselect, X as q, Y as require_picocolors, a as writeAgentInstructions, g as installGitHooks, j as runViteFmt, k as downloadPackageManager$1, m as hasFrameworkShim, n as detectExistingAgentTargetPaths, o as addFrameworkShim, q as spinner, r as selectAgentTargetPaths, u as detectFramework, w as rewriteStandaloneProject } from "../agent-iabUQh_f.js";
5
5
  import { t as lib_default } from "../lib-BamM40b7.js";
6
6
  import { c as readJsonFile, o as editJsonFile, t as checkNpmPackageExists } from "../package-D_LD1iiI.js";
7
- import { a as detectExistingEditor, n as updatePackageJsonWithDeps, o as selectEditor, r as updateWorkspaceConfig, s as writeEditorConfigs, t as detectWorkspace$1 } from "../workspace-BkYdJSyv.js";
7
+ import { a as detectExistingEditor, n as updatePackageJsonWithDeps, o as selectEditor, r as updateWorkspaceConfig, s as writeEditorConfigs, t as detectWorkspace$1 } from "../workspace-CbqYKgbm.js";
8
8
  import { t as renderCliDoc } from "../help-BtkjXtRM.js";
9
9
  import path from "node:path";
10
10
  import { runCommand, vitePlusHeader } from "../../binding/index.js";
@@ -110,13 +110,12 @@ function getPackageRunner(workspaceInfo) {
110
110
  }
111
111
  function formatDlxCommand(packageName, args, workspaceInfo) {
112
112
  const runner = getPackageRunner(workspaceInfo);
113
- const dlxArgs = runner.command === "npx" ? ["--", ...args] : args;
114
113
  return {
115
114
  command: runner.command,
116
115
  args: [
117
116
  ...runner.args,
118
117
  packageName,
119
- ...dlxArgs
118
+ ...args
120
119
  ]
121
120
  };
122
121
  }
@@ -4242,6 +4241,7 @@ Use \`vp create --list\` to list all available templates, or run \`vp create --h
4242
4241
  if (!compactOutput) log$1.step("Monorepo integration...");
4243
4242
  updateCreateProgress("Integrating into monorepo");
4244
4243
  rewriteMonorepoProject(fullPath, workspaceInfo.packageManager, void 0, compactOutput);
4244
+ for (const framework of detectFramework(fullPath)) if (!hasFrameworkShim(fullPath, framework)) addFrameworkShim(fullPath, framework);
4245
4245
  if (workspaceInfo.packages.length > 0) {
4246
4246
  if (options.interactive) {
4247
4247
  pauseCreateProgress();
@@ -4281,6 +4281,7 @@ Use \`vp create --list\` to list all available templates, or run \`vp create --h
4281
4281
  } else {
4282
4282
  updateCreateProgress("Applying Vite+ project setup");
4283
4283
  rewriteStandaloneProject(fullPath, workspaceInfo, void 0, compactOutput);
4284
+ for (const framework of detectFramework(fullPath)) if (!hasFrameworkShim(fullPath, framework)) addFrameworkShim(fullPath, framework);
4284
4285
  if (shouldSetupHooks) installGitHooks(fullPath, compactOutput);
4285
4286
  updateCreateProgress("Installing dependencies");
4286
4287
  installSummary = await runViteInstall(fullPath, options.interactive, installArgs, { silent: compactOutput });
@@ -1,11 +1,11 @@
1
1
  import { r as __toESM } from "../chunk-q7NCDQ7-.js";
2
2
  import { l as isForceOverrideMode } from "../main-A6UrSTYb.js";
3
3
  import { i as muted, r as log, t as accent } from "../terminal-P9aw9Fib.js";
4
- import { A as selectPackageManager, B as log$1, D as promptGitHooks, E as downloadPackageManager$1, F as PackageManager, H as outro, I as require_semver, M as displayRelative, R as confirm, T as defaultInteractive, U as select, W as spinner, _ as migratePrettierToOxfmt, a as writeAgentInstructions, c as detectEslintProject, g as migrateNodeVersionManagerFile, h as migrateEslintToOxlint, j as upgradeYarn, k as runViteInstall, l as detectNodeVersionManagerFile, m as mergeViteConfigFiles, n as detectExistingAgentTargetPaths, o as checkViteVersion, p as installGitHooks, q, r as selectAgentTargetPaths, s as checkVitestVersion, t as detectAgentConflicts, u as detectPrettierProject, v as preflightGitHooksSetup, w as cancelAndExit, x as rewriteStandaloneProject, y as rewriteMonorepo } from "../agent-Ctkv5amd.js";
4
+ import { A as promptGitHooks, D as cancelAndExit, F as displayRelative, G as outro, K as select, M as runViteInstall, N as selectPackageManager, O as defaultInteractive, P as upgradeYarn, R as PackageManager, S as rewriteMonorepo, U as log$1, V as confirm, X as q, _ as mergeViteConfigFiles, a as writeAgentInstructions, b as migratePrettierToOxfmt, c as checkVitestVersion, d as detectNodeVersionManagerFile, f as detectPrettierProject, g as installGitHooks, k as downloadPackageManager$1, l as detectEslintProject, m as hasFrameworkShim, n as detectExistingAgentTargetPaths, o as addFrameworkShim, q as spinner, r as selectAgentTargetPaths, s as checkViteVersion, t as detectAgentConflicts, u as detectFramework, v as migrateEslintToOxlint, w as rewriteStandaloneProject, x as preflightGitHooksSetup, y as migrateNodeVersionManagerFile, z as require_semver } from "../agent-iabUQh_f.js";
5
5
  import { t as lib_default } from "../lib-BamM40b7.js";
6
6
  import { a as readNearestPackageJson, i as hasVitePlusDependency } from "../package-D_LD1iiI.js";
7
- import { r as createMigrationReport } from "../report-DHdnkZbA.js";
8
- import { i as detectEditorConflicts, o as selectEditor, s as writeEditorConfigs, t as detectWorkspace$1 } from "../workspace-BkYdJSyv.js";
7
+ import { r as createMigrationReport } from "../report-DbrfjWiP.js";
8
+ import { i as detectEditorConflicts, o as selectEditor, s as writeEditorConfigs, t as detectWorkspace$1 } from "../workspace-CbqYKgbm.js";
9
9
  import { t as renderCliDoc } from "../help-BtkjXtRM.js";
10
10
  import path from "node:path";
11
11
  import { vitePlusHeader } from "../../binding/index.js";
@@ -85,6 +85,21 @@ async function confirmNodeVersionFileMigration(interactive, detection) {
85
85
  }
86
86
  return true;
87
87
  }
88
+ async function confirmFrameworkShim(framework, interactive) {
89
+ const name = {
90
+ vue: "Vue",
91
+ astro: "Astro"
92
+ }[framework];
93
+ if (interactive) {
94
+ const confirmed = await confirm({
95
+ message: `Add TypeScript shim for ${name} component files (*.${framework})?\n ` + styleText("gray", `Lets TypeScript recognize .${framework} files until vp check fully supports them.`),
96
+ initialValue: true
97
+ });
98
+ if (q(confirmed)) cancelAndExit();
99
+ return confirmed;
100
+ }
101
+ return true;
102
+ }
88
103
  const helpMessage = renderCliDoc({
89
104
  usage: "vp migrate [PATH] [OPTIONS]",
90
105
  summary: "Migrate standalone Vite, Vitest, Oxlint, Oxfmt, and Prettier projects to unified Vite+.",
@@ -291,6 +306,15 @@ async function collectMigrationPlan(rootDir, detectedPackageManager, options, pa
291
306
  const nodeVersionDetection = detectNodeVersionManagerFile(rootDir);
292
307
  let migrateNodeVersionFile = false;
293
308
  if (nodeVersionDetection) migrateNodeVersionFile = await confirmNodeVersionFileMigration(options.interactive, nodeVersionDetection);
309
+ const allDetectedFrameworks = new Set(detectFramework(rootDir));
310
+ for (const pkg of packages ?? []) for (const framework of detectFramework(path.join(rootDir, pkg.path))) allDetectedFrameworks.add(framework);
311
+ const frameworkShimFrameworks = [];
312
+ for (const framework of allDetectedFrameworks) if (detectFramework(rootDir).includes(framework) && !hasFrameworkShim(rootDir, framework) || (packages ?? []).some((pkg) => {
313
+ const pkgPath = path.join(rootDir, pkg.path);
314
+ return detectFramework(pkgPath).includes(framework) && !hasFrameworkShim(pkgPath, framework);
315
+ })) {
316
+ if (await confirmFrameworkShim(framework, options.interactive)) frameworkShimFrameworks.push(framework);
317
+ }
294
318
  return {
295
319
  packageManager,
296
320
  shouldSetupHooks,
@@ -303,7 +327,8 @@ async function collectMigrationPlan(rootDir, detectedPackageManager, options, pa
303
327
  migratePrettier,
304
328
  prettierConfigFile: prettierProject.configFile,
305
329
  migrateNodeVersionFile,
306
- nodeVersionDetection
330
+ nodeVersionDetection,
331
+ frameworkShimFrameworks: frameworkShimFrameworks.length > 0 ? frameworkShimFrameworks : void 0
307
332
  };
308
333
  }
309
334
  function formatDuration(durationMs) {
@@ -329,6 +354,7 @@ function showMigrationSummary(options) {
329
354
  if (report.prettierMigrated) log(`${styleText("gray", "•")} Prettier migrated to Oxfmt`);
330
355
  if (report.nodeVersionFileMigrated) log(`${styleText("gray", "•")} Node version manager file migrated to .node-version`);
331
356
  if (report.gitHooksConfigured) log(`${styleText("gray", "•")} Git hooks configured`);
357
+ if (report.frameworkShimAdded) log(`${styleText("gray", "•")} TypeScript shim added for framework component files`);
332
358
  if (report.warnings.length > 0) {
333
359
  log(`${styleText("yellow", "!")} Warnings:`);
334
360
  for (const warning of report.warnings) log(` - ${warning}`);
@@ -341,7 +367,7 @@ function showMigrationSummary(options) {
341
367
  async function checkRolldownCompatibility(rootDir, report) {
342
368
  try {
343
369
  const { resolveConfig } = await import("../index.js");
344
- const { checkManualChunksCompat } = await import("../compat-CWdTi2kB.js");
370
+ const { checkManualChunksCompat } = await import("../compat-DdC7fHjB.js");
345
371
  checkManualChunksCompat((await resolveConfig({
346
372
  root: rootDir,
347
373
  logLevel: "silent",
@@ -453,6 +479,16 @@ async function executeMigrationPlan(workspaceInfoOptional, plan, interactive) {
453
479
  conflictDecisions: plan.editorConflictDecisions,
454
480
  silent: true
455
481
  });
482
+ if (plan.frameworkShimFrameworks) {
483
+ updateMigrationProgress("Adding TypeScript shim");
484
+ for (const framework of plan.frameworkShimFrameworks) {
485
+ if (detectFramework(workspaceInfo.rootDir).includes(framework) && !hasFrameworkShim(workspaceInfo.rootDir, framework)) addFrameworkShim(workspaceInfo.rootDir, framework, report);
486
+ for (const pkg of workspaceInfo.packages) {
487
+ const pkgPath = path.join(workspaceInfo.rootDir, pkg.path);
488
+ if (detectFramework(pkgPath).includes(framework) && !hasFrameworkShim(pkgPath, framework)) addFrameworkShim(pkgPath, framework, report);
489
+ }
490
+ }
491
+ }
456
492
  const installArgs = plan.packageManager === PackageManager.npm || plan.packageManager === PackageManager.bun ? ["--force"] : void 0;
457
493
  updateMigrationProgress("Installing dependencies");
458
494
  const finalInstallSummary = await runViteInstall(workspaceInfo.rootDir, interactive, installArgs, { silent: true });
@@ -13,6 +13,7 @@ function createMigrationReport() {
13
13
  prettierMigrated: false,
14
14
  nodeVersionFileMigrated: false,
15
15
  gitHooksConfigured: false,
16
+ frameworkShimAdded: false,
16
17
  warnings: [],
17
18
  manualSteps: []
18
19
  };
@@ -1,4 +1,4 @@
1
- import { B as log, C as readYamlFile, F as PackageManager, S as editYamlFile, U as select, q } from "./agent-Ctkv5amd.js";
1
+ import { E as readYamlFile, K as select, R as PackageManager, T as editYamlFile, U as log, X as q } from "./agent-iabUQh_f.js";
2
2
  import { t as require_dist } from "./dist-Dkzst9fl.js";
3
3
  import { c as readJsonFile, l as writeJsonFile, o as editJsonFile, r as getScopeFromPackageName } from "./package-D_LD1iiI.js";
4
4
  import path, { posix, win32 } from "node:path";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plus",
3
- "version": "0.1.19-alpha.1",
3
+ "version": "0.1.19-alpha.3",
4
4
  "description": "The Unified Toolchain for the Web",
5
5
  "homepage": "https://viteplus.dev/guide",
6
6
  "bugs": {
@@ -322,17 +322,16 @@
322
322
  "oxfmt": "=0.45.0",
323
323
  "oxlint": "=1.60.0",
324
324
  "oxlint-tsgolint": "=0.21.1",
325
- "@voidzero-dev/vite-plus-core": "0.1.19-alpha.1",
326
- "@voidzero-dev/vite-plus-test": "0.1.19-alpha.1"
325
+ "@voidzero-dev/vite-plus-core": "0.1.19-alpha.3",
326
+ "@voidzero-dev/vite-plus-test": "0.1.19-alpha.3"
327
327
  },
328
328
  "devDependencies": {
329
329
  "@napi-rs/cli": "^3.6.1",
330
330
  "@nkzw/safe-word-list": "^3.1.0",
331
- "@oxc-node/core": "^0.0.32",
331
+ "@oxc-node/core": "^0.1.0",
332
332
  "@types/cross-spawn": "^6.0.6",
333
333
  "@types/semver": "^7.7.1",
334
334
  "@types/validate-npm-package-name": "^4.0.2",
335
- "@voidzero-dev/vite-plus-tools": "",
336
335
  "cac": "^7.0.0",
337
336
  "cross-spawn": "^7.0.5",
338
337
  "detect-indent": "^7.0.2",
@@ -348,8 +347,9 @@
348
347
  "tsdown": "^0.21.9",
349
348
  "validate-npm-package-name": "^7.0.2",
350
349
  "yaml": "^2.8.1",
351
- "@voidzero-dev/vite-plus-prompts": "0.0.0",
352
- "vite": "npm:@voidzero-dev/vite-plus-core@0.1.19-alpha.1"
350
+ "@voidzero-dev/vite-plus-tools": "0.0.0",
351
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.1.19-alpha.3",
352
+ "@voidzero-dev/vite-plus-prompts": "0.0.0"
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.19-alpha.1",
373
- "@voidzero-dev/vite-plus-darwin-x64": "0.1.19-alpha.1",
374
- "@voidzero-dev/vite-plus-linux-arm64-gnu": "0.1.19-alpha.1",
375
- "@voidzero-dev/vite-plus-linux-arm64-musl": "0.1.19-alpha.1",
376
- "@voidzero-dev/vite-plus-linux-x64-gnu": "0.1.19-alpha.1",
377
- "@voidzero-dev/vite-plus-linux-x64-musl": "0.1.19-alpha.1",
378
- "@voidzero-dev/vite-plus-win32-x64-msvc": "0.1.19-alpha.1",
379
- "@voidzero-dev/vite-plus-win32-arm64-msvc": "0.1.19-alpha.1"
372
+ "@voidzero-dev/vite-plus-darwin-arm64": "0.1.19-alpha.3",
373
+ "@voidzero-dev/vite-plus-darwin-x64": "0.1.19-alpha.3",
374
+ "@voidzero-dev/vite-plus-linux-arm64-gnu": "0.1.19-alpha.3",
375
+ "@voidzero-dev/vite-plus-linux-arm64-musl": "0.1.19-alpha.3",
376
+ "@voidzero-dev/vite-plus-linux-x64-gnu": "0.1.19-alpha.3",
377
+ "@voidzero-dev/vite-plus-linux-x64-musl": "0.1.19-alpha.3",
378
+ "@voidzero-dev/vite-plus-win32-x64-msvc": "0.1.19-alpha.3",
379
+ "@voidzero-dev/vite-plus-win32-arm64-msvc": "0.1.19-alpha.3"
380
380
  },
381
381
  "scripts": {
382
382
  "build": "oxnode -C dev ./build.ts",