@voidzero-dev/vite-plus-core 0.1.16-alpha.1 → 0.1.16-alpha.2

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.
@@ -1,8 +1,8 @@
1
1
  import { r as __toESM, t as __commonJSMin } from "./chunk-CSNpwdVU.js";
2
- import { C as promiseWithResolvers, D as toArray, E as slash, S as pkgExists, T as resolveRegex, _ as yellow, a as createLogger, b as matchPattern, c as globalLogger, d as bold, f as dim, g as underline, h as red, i as LogLevels, l as prettyFormat, n as z, o as generateColor, p as green, r as version, s as getNameLabel, t as R, u as blue, v as debounce, w as resolveComma, x as noop, y as importWithError } from "./main-75lC0Mio.js";
2
+ import { C as promiseWithResolvers, D as toArray, E as slash, S as pkgExists, T as resolveRegex, _ as yellow, a as createLogger, b as matchPattern, c as globalLogger, d as bold, f as dim, g as underline, h as red, i as LogLevels, l as prettyFormat, n as z, o as generateColor, p as green, r as version, s as getNameLabel, t as R, u as blue, v as debounce, w as resolveComma, x as noop, y as importWithError } from "./main-CC95VQtR.js";
3
3
  import { t as createDebug } from "./node-B3Gdtau1.js";
4
4
  import { d as filename_js_to_dts, i as RE_JS, n as RE_DTS, o as RE_NODE_MODULES$1, t as RE_CSS } from "./filename-DQnUJlio-smVMy5Ot.js";
5
- import "./dist-D7qIxBaV.js";
5
+ import "./dist-CxeZzY9B.js";
6
6
  import module$1, { builtinModules, createRequire, isBuiltin } from "node:module";
7
7
  import process$1, { env } from "node:process";
8
8
  import readline from "node:readline";
@@ -11,7 +11,7 @@ import path, { dirname, isAbsolute, join, parse, resolve } from "node:path";
11
11
  import { VERSION, build, watch } from "@voidzero-dev/vite-plus-core/rolldown";
12
12
  import { access, chmod, cp, mkdir, mkdtemp, readFile, readdir, rm, stat, writeFile } from "node:fs/promises";
13
13
  import { and, id, importerId, include } from "@voidzero-dev/vite-plus-core/rolldown/filter";
14
- import fs$1, { existsSync, readFileSync, writeFileSync } from "node:fs";
14
+ import re, { existsSync, readFileSync, writeFileSync } from "node:fs";
15
15
  import * as nativeFs$1 from "fs";
16
16
  import nativeFs from "fs";
17
17
  import path$1, { basename, dirname as dirname$1, normalize as normalize$1, posix, relative, resolve as resolve$1, sep } from "path";
@@ -22,7 +22,7 @@ import { pathToFileURL } from "node:url";
22
22
  import { Buffer } from "node:buffer";
23
23
  import { brotliCompress, gzip } from "node:zlib";
24
24
  import { importGlobPlugin } from "@voidzero-dev/vite-plus-core/rolldown/experimental";
25
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/fs-Dd6Htx2P.mjs
25
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/fs-Dd6Htx2P.mjs
26
26
  function fsExists(path) {
27
27
  return access(path).then(() => true, () => false);
28
28
  }
@@ -65,7 +65,7 @@ function stripExtname(filePath) {
65
65
  return filePath.slice(0, -ext.length);
66
66
  }
67
67
  //#endregion
68
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/format-_3CEX8E7.mjs
68
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/format-_3CEX8E7.mjs
69
69
  const shimFile = path.resolve(import.meta.dirname, "..", "esm-shims.js");
70
70
  function getShimsInject(format, platform) {
71
71
  if (format === "es" && platform === "node") return {
@@ -277,7 +277,7 @@ function detectIndentation(jsonText) {
277
277
  return 2;
278
278
  }
279
279
  //#endregion
280
- //#region ../../node_modules/.pnpm/defu@6.1.4/node_modules/defu/dist/defu.mjs
280
+ //#region ../../node_modules/.pnpm/defu@6.1.6/node_modules/defu/dist/defu.mjs
281
281
  function isPlainObject(value) {
282
282
  if (value === null || typeof value !== "object") return false;
283
283
  const prototype = Object.getPrototypeOf(value);
@@ -288,8 +288,8 @@ function isPlainObject(value) {
288
288
  }
289
289
  function _defu(baseObject, defaults, namespace = ".", merger) {
290
290
  if (!isPlainObject(defaults)) return _defu(baseObject, {}, namespace, merger);
291
- const object = Object.assign({}, defaults);
292
- for (const key in baseObject) {
291
+ const object = { ...defaults };
292
+ for (const key of Object.keys(baseObject)) {
293
293
  if (key === "__proto__" || key === "constructor") continue;
294
294
  const value = baseObject[key];
295
295
  if (value === null || value === void 0) continue;
@@ -3182,87 +3182,87 @@ quansync$1({
3182
3182
  */
3183
3183
  const quansync = quansync$1;
3184
3184
  quansync$1({
3185
- sync: fs$1.readFileSync,
3186
- async: fs$1.promises.readFile
3185
+ sync: re.readFileSync,
3186
+ async: re.promises.readFile
3187
3187
  });
3188
3188
  quansync$1({
3189
- sync: fs$1.writeFileSync,
3190
- async: fs$1.promises.writeFile
3189
+ sync: re.writeFileSync,
3190
+ async: re.promises.writeFile
3191
3191
  });
3192
3192
  quansync$1({
3193
- sync: fs$1.unlinkSync,
3194
- async: fs$1.promises.unlink
3193
+ sync: re.unlinkSync,
3194
+ async: re.promises.unlink
3195
3195
  });
3196
3196
  quansync$1({
3197
- sync: fs$1.accessSync,
3198
- async: fs$1.promises.access
3197
+ sync: re.accessSync,
3198
+ async: re.promises.access
3199
3199
  });
3200
3200
  /**
3201
3201
  * @link https://nodejs.org/api/fs.html#fspromisesstatpath-options
3202
3202
  */
3203
3203
  const stat$1 = quansync$1({
3204
- sync: fs$1.statSync,
3205
- async: fs$1.promises.stat
3204
+ sync: re.statSync,
3205
+ async: re.promises.stat
3206
3206
  });
3207
3207
  const lstat = quansync$1({
3208
- sync: fs$1.lstatSync,
3209
- async: fs$1.promises.lstat
3208
+ sync: re.lstatSync,
3209
+ async: re.promises.lstat
3210
3210
  });
3211
3211
  quansync$1({
3212
- sync: fs$1.copyFileSync,
3213
- async: fs$1.promises.copyFile
3212
+ sync: re.copyFileSync,
3213
+ async: re.promises.copyFile
3214
3214
  });
3215
3215
  quansync$1({
3216
- sync: fs$1.rmSync,
3217
- async: fs$1.promises.rm
3216
+ sync: re.rmSync,
3217
+ async: re.promises.rm
3218
3218
  });
3219
3219
  quansync$1({
3220
- sync: fs$1.mkdirSync,
3221
- async: fs$1.promises.mkdir
3220
+ sync: re.mkdirSync,
3221
+ async: re.promises.mkdir
3222
3222
  });
3223
3223
  quansync$1({
3224
- sync: fs$1.renameSync,
3225
- async: fs$1.promises.rename
3224
+ sync: re.renameSync,
3225
+ async: re.promises.rename
3226
3226
  });
3227
3227
  quansync$1({
3228
- sync: fs$1.readdirSync,
3229
- async: fs$1.promises.readdir
3228
+ sync: re.readdirSync,
3229
+ async: re.promises.readdir
3230
3230
  });
3231
3231
  quansync$1({
3232
- sync: fs$1.realpathSync,
3233
- async: fs$1.promises.realpath
3232
+ sync: re.realpathSync,
3233
+ async: re.promises.realpath
3234
3234
  });
3235
3235
  quansync$1({
3236
- sync: fs$1.readlinkSync,
3237
- async: fs$1.promises.readlink
3236
+ sync: re.readlinkSync,
3237
+ async: re.promises.readlink
3238
3238
  });
3239
3239
  quansync$1({
3240
- sync: fs$1.symlinkSync,
3241
- async: fs$1.promises.symlink
3240
+ sync: re.symlinkSync,
3241
+ async: re.promises.symlink
3242
3242
  });
3243
3243
  quansync$1({
3244
- sync: fs$1.chownSync,
3245
- async: fs$1.promises.chown
3244
+ sync: re.chownSync,
3245
+ async: re.promises.chown
3246
3246
  });
3247
3247
  quansync$1({
3248
- sync: fs$1.lchownSync,
3249
- async: fs$1.promises.lchown
3248
+ sync: re.lchownSync,
3249
+ async: re.promises.lchown
3250
3250
  });
3251
3251
  quansync$1({
3252
- sync: fs$1.chmodSync,
3253
- async: fs$1.promises.chmod
3252
+ sync: re.chmodSync,
3253
+ async: re.promises.chmod
3254
3254
  });
3255
3255
  quansync$1({
3256
- sync: fs$1.utimesSync,
3257
- async: fs$1.promises.utimes
3256
+ sync: re.utimesSync,
3257
+ async: re.promises.utimes
3258
3258
  });
3259
3259
  quansync$1({
3260
- sync: fs$1.lutimesSync,
3261
- async: fs$1.promises.lutimes
3260
+ sync: re.lutimesSync,
3261
+ async: re.promises.lutimes
3262
3262
  });
3263
3263
  quansync$1({
3264
- sync: fs$1.mkdtempSync,
3265
- async: fs$1.promises.mkdtemp
3264
+ sync: re.mkdtempSync,
3265
+ async: re.promises.mkdtemp
3266
3266
  });
3267
3267
  //#endregion
3268
3268
  //#region ../../node_modules/.pnpm/unconfig-core@7.5.0/node_modules/unconfig-core/dist/index.mjs
@@ -3341,7 +3341,7 @@ function createConfigCoreLoader(options) {
3341
3341
  };
3342
3342
  }
3343
3343
  //#endregion
3344
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/options-j2tUAf6W.mjs
3344
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/options-j2tUAf6W.mjs
3345
3345
  const __cjs_require$1 = createRequire(import.meta.url);
3346
3346
  const picomatch = __cjs_require$1("./npm_entry_picomatch.cjs");
3347
3347
  const satisfies$1 = __cjs_require$1("./npm_entry_semver_functions_satisfies.cjs");
@@ -3964,7 +3964,7 @@ async function nativeImport(id) {
3964
3964
  return mod.default || mod;
3965
3965
  }
3966
3966
  async function unrunImport(id) {
3967
- const { unrun } = await import("./dist-_IXstuie.js");
3967
+ const { unrun } = await import("./dist-Cqme3mtE.js");
3968
3968
  const { module } = await unrun({ path: pathToFileURL(id).href });
3969
3969
  return module;
3970
3970
  }
@@ -4157,7 +4157,7 @@ function filterConfig(filter, configCwd, name) {
4157
4157
  return toArray(filter).some((value) => name && name === value || cwd === value);
4158
4158
  }
4159
4159
  //#endregion
4160
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/watch-ZJbRq-K8.mjs
4160
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/watch-ZJbRq-K8.mjs
4161
4161
  async function copy(options) {
4162
4162
  if (!options.copy) return;
4163
4163
  const resolved = await resolveCopyEntries(options);
@@ -4537,7 +4537,7 @@ var Hookable = class {
4537
4537
  }
4538
4538
  };
4539
4539
  //#endregion
4540
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/build-DU-BFLB1.mjs
4540
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/build-DU-BFLB1.mjs
4541
4541
  const __cjs_require = createRequire(import.meta.url);
4542
4542
  const satisfies = __cjs_require("./npm_entry_semver_functions_satisfies.cjs");
4543
4543
  const coerce = __cjs_require("./npm_entry_semver_functions_coerce.cjs");
@@ -4834,7 +4834,7 @@ async function bundleDone(bundleByPkg, bundle) {
4834
4834
  async function packTarball(packageJsonPath) {
4835
4835
  const pkgDir = path.dirname(packageJsonPath);
4836
4836
  const destination = await mkdtemp(path.join(tmpdir(), "tsdown-pack-"));
4837
- const { detect } = await import("./detect-h8ZFBH96-Bno5qqnh.js");
4837
+ const { detect } = await import("./detect-h8ZFBH96-CQBPtOHi.js");
4838
4838
  try {
4839
4839
  const detected = await detect({ cwd: pkgDir });
4840
4840
  if (detected?.name === "deno") throw new Error(`Cannot pack tarball for Deno projects at ${pkgDir}`);
@@ -4970,7 +4970,7 @@ async function resolveInputOptions(config, format, configFiles, bundle, cjsDts,
4970
4970
  if (nodeProtocol) plugins.push(NodeProtocolPlugin(nodeProtocol));
4971
4971
  if (config.pkg || config.deps.skipNodeModulesBundle) plugins.push(DepsPlugin(config, bundle));
4972
4972
  if (dts) {
4973
- const { dts: dtsPlugin } = await import("./dist-DEpJUFcM.js");
4973
+ const { dts: dtsPlugin } = await import("./dist-SqMQ6Q2q.js");
4974
4974
  const { cjsReexport: _, ...dtsPluginOptions } = dts;
4975
4975
  const options = {
4976
4976
  tsconfig,
@@ -0,0 +1,2 @@
1
+ import { r as build_exports } from "./build-DU-BFLB1-B3WPwpFM.js";
2
+ export { build_exports as r };
@@ -1,6 +1,6 @@
1
- import { D as toArray, w as resolveComma } from "./main-75lC0Mio.js";
1
+ import { D as toArray, w as resolveComma } from "./main-CC95VQtR.js";
2
2
  import { n as enable, r as namespaces, t as createDebug } from "./node-B3Gdtau1.js";
3
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/debug-BmAPbhgA.mjs
3
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/debug-BmAPbhgA.mjs
4
4
  const debugLog = createDebug("tsdown:debug");
5
5
  function enableDebug(debug) {
6
6
  if (!debug) return;
@@ -1,7 +1,7 @@
1
1
  import process from "node:process";
2
2
  import path from "node:path";
3
3
  import fs from "node:fs/promises";
4
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/detect-h8ZFBH96.mjs
4
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/detect-h8ZFBH96.mjs
5
5
  const AGENTS = [
6
6
  "npm",
7
7
  "yarn",
@@ -3,7 +3,7 @@ import process from "node:process";
3
3
  import "node:child_process";
4
4
  import path from "node:path";
5
5
  import { rolldown } from "@voidzero-dev/vite-plus-core/rolldown";
6
- import fs, { existsSync } from "node:fs";
6
+ import re, { existsSync } from "node:fs";
7
7
  import { tmpdir } from "node:os";
8
8
  import { fileURLToPath, pathToFileURL } from "node:url";
9
9
  import { Buffer } from "node:buffer";
@@ -54,7 +54,7 @@ function resolveOptions(options = {}) {
54
54
  inputOptions: options.inputOptions,
55
55
  outputOptions: options.outputOptions
56
56
  };
57
- if (!fs.existsSync(resolvedOptions.path)) throw new Error(`[unrun] File not found: ${resolvedOptions.path}`);
57
+ if (!re.existsSync(resolvedOptions.path)) throw new Error(`[unrun] File not found: ${resolvedOptions.path}`);
58
58
  if (!new Set([
59
59
  "none",
60
60
  "jiti",
@@ -268,7 +268,7 @@ function createJsonLoader() {
268
268
  let isRequire = false;
269
269
  try {
270
270
  if (importer) {
271
- const src = fs.readFileSync(importer, "utf8");
271
+ const src = re.readFileSync(importer, "utf8");
272
272
  const escaped = source.replaceAll(/[.*+?^${}()|[\]\\]/g, (m) => `\\${m}`);
273
273
  const pattern = String.raw`\brequire\s*\(\s*['"]${escaped}['"]\s*\)`;
274
274
  isRequire = new RegExp(pattern).test(src);
@@ -281,7 +281,7 @@ function createJsonLoader() {
281
281
  handler(id) {
282
282
  try {
283
283
  const realId = id.replace(/\?unrun-json\.(?:mjs|cjs)$/, "");
284
- const src = fs.readFileSync(realId, "utf8");
284
+ const src = re.readFileSync(realId, "utf8");
285
285
  const data = JSON.parse(src);
286
286
  const jsonLiteral = JSON.stringify(data);
287
287
  if (id.endsWith("?unrun-json.cjs")) return { code: `const __data = ${jsonLiteral}\ntry { Object.defineProperty(__data, 'default', { value: __data, enumerable: false, configurable: true }) } catch {}\nmodule.exports = __data\n` };
@@ -375,7 +375,7 @@ function createRequireResolveFix(options) {
375
375
  ".cjs"
376
376
  ]) {
377
377
  const testPath = path.resolve(baseDir, id + ext);
378
- if (fs.existsSync(testPath)) return JSON.stringify(testPath);
378
+ if (re.existsSync(testPath)) return JSON.stringify(testPath);
379
379
  }
380
380
  const resolvedPath = path.resolve(baseDir, id);
381
381
  return JSON.stringify(resolvedPath);
@@ -416,7 +416,7 @@ function createSourceContextShimsPlugin() {
416
416
  const normalizedPhysicalId = path.normalize(physicalId);
417
417
  let code;
418
418
  try {
419
- code = fs.readFileSync(normalizedPhysicalId, "utf8");
419
+ code = re.readFileSync(normalizedPhysicalId, "utf8");
420
420
  } catch {
421
421
  return null;
422
422
  }
@@ -658,7 +658,7 @@ function cleanModule(moduleUrl, options) {
658
658
  try {
659
659
  if (moduleUrl.startsWith("file://")) {
660
660
  const filePath = new URL(moduleUrl);
661
- fs.unlinkSync(filePath);
661
+ re.unlinkSync(filePath);
662
662
  }
663
663
  } catch (error) {
664
664
  if (error.code !== "ENOENT") throw error;
@@ -682,14 +682,14 @@ function writeModule(code, options) {
682
682
  const projectNodeModules = path.join(process.cwd(), "node_modules");
683
683
  const outDir = path.join(projectNodeModules, ".unrun");
684
684
  const outFile = path.join(outDir, fname);
685
- if (!fs.existsSync(outFile)) try {
686
- fs.mkdirSync(outDir, { recursive: true });
687
- fs.writeFileSync(outFile, code, "utf8");
685
+ if (!re.existsSync(outFile)) try {
686
+ re.mkdirSync(outDir, { recursive: true });
687
+ re.writeFileSync(outFile, code, "utf8");
688
688
  } catch {
689
689
  const fallbackDir = path.join(tmpdir(), "unrun-cache");
690
690
  const fallbackFile = path.join(fallbackDir, fname);
691
- fs.mkdirSync(fallbackDir, { recursive: true });
692
- fs.writeFileSync(fallbackFile, code, "utf8");
691
+ re.mkdirSync(fallbackDir, { recursive: true });
692
+ re.writeFileSync(fallbackFile, code, "utf8");
693
693
  moduleUrl = pathToFileURL(fallbackFile).href;
694
694
  }
695
695
  moduleUrl = moduleUrl || pathToFileURL(outFile).href;
@@ -1,6 +1,6 @@
1
1
  import module from "node:module";
2
2
  import path from "node:path";
3
- import fs from "node:fs";
3
+ import re from "node:fs";
4
4
  import nativeFs from "fs";
5
5
  import Be from "os";
6
6
  import path$1 from "path";
@@ -63,11 +63,11 @@ function h(e) {
63
63
  }
64
64
  i(h, "slash");
65
65
  const Z = i((e) => {
66
- const t = fs[e];
66
+ const t = re[e];
67
67
  return (s, ...n) => {
68
68
  const o = `${e}:${n.join(":")}`;
69
69
  let l = s == null ? void 0 : s.get(o);
70
- return l === void 0 && (l = Reflect.apply(t, fs, n), s?.set(o, l)), l;
70
+ return l === void 0 && (l = Reflect.apply(t, re, n), s?.set(o, l)), l;
71
71
  };
72
72
  }, "cacheFs"), E = Z("existsSync"), $e = Z("readFileSync"), G = Z("statSync"), fe = i((e, t, s) => {
73
73
  for (;;) {
@@ -1,7 +1,7 @@
1
1
  import { n as __exportAll, r as __toESM, t as __commonJSMin } from "./chunk-CSNpwdVU.js";
2
2
  import { t as createDebug } from "./node-B3Gdtau1.js";
3
3
  import { a as RE_JSON, c as RE_TS, d as filename_js_to_dts, f as filename_to_dts, i as RE_JS, l as RE_VUE, m as resolveTemplateFn, n as RE_DTS, o as RE_NODE_MODULES, p as replaceTemplateName, r as RE_DTS_MAP, s as RE_ROLLDOWN_RUNTIME, t as RE_CSS, u as filename_dts_to } from "./filename-DQnUJlio-smVMy5Ot.js";
4
- import { n as pe, t as Ge } from "./dist-D7qIxBaV.js";
4
+ import { n as pe, t as Ge } from "./dist-CxeZzY9B.js";
5
5
  import { n as globalContext, r as invalidateContextFile, t as createContext } from "./tsc-context-BEcA6aUv.js";
6
6
  import { createRequire } from "node:module";
7
7
  import process from "node:process";
@@ -4,7 +4,7 @@ import { IsolatedDeclarationsOptions } from "@voidzero-dev/vite-plus-core/rolldo
4
4
 
5
5
  //#region \0rolldown/runtime.js
6
6
  //#endregion
7
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/logger-DLaktdLm.d.mts
7
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/logger-DLaktdLm.d.mts
8
8
  //#region src/utils/types.d.ts
9
9
  type Overwrite<T, U> = Omit<T, keyof U> & U;
10
10
  type Awaitable<T> = T | Promise<T>;
@@ -20912,7 +20912,7 @@ interface StylusPreprocessorOptions {
20912
20912
  [key: string]: any;
20913
20913
  }
20914
20914
  //#endregion
20915
- //#region ../../node_modules/.pnpm/@vitejs+devtools@0.1.11_@pnpm+logger@1001.0.1_typescript@5.9.3_vite@packages+core/node_modules/@vitejs/devtools/dist/cli-commands.d.ts
20915
+ //#region ../../node_modules/.pnpm/@vitejs+devtools@0.1.13_@pnpm+logger@1001.0.1_typescript@5.9.3_vite@packages+core/node_modules/@vitejs/devtools/dist/cli-commands.d.ts
20916
20916
  //#region src/node/cli-commands.d.ts
20917
20917
  interface StartOptions {
20918
20918
  root?: string;
@@ -21122,7 +21122,7 @@ interface TsgoOptions {
21122
21122
  path?: string;
21123
21123
  }
21124
21124
  //#endregion
21125
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/types-DD-uKQPn.d.mts
21125
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/types-DD-uKQPn.d.mts
21126
21126
  //#region src/features/copy.d.ts
21127
21127
  interface CopyEntry {
21128
21128
  /**
@@ -22283,7 +22283,7 @@ type ResolvedConfig = Overwrite<MarkPartial<Omit<UserConfig, "workspace" | "from
22283
22283
  exe: false | ExeOptions;
22284
22284
  }>; //#endregion
22285
22285
  //#endregion
22286
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/config-BJiwtsMo.d.mts
22286
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/config-BJiwtsMo.d.mts
22287
22287
  //#region src/config/options.d.ts
22288
22288
  /**
22289
22289
  * Resolve user config into resolved configs
@@ -22303,7 +22303,7 @@ declare function defineConfig(options: UserConfig[]): UserConfig[];
22303
22303
  declare function defineConfig(options: UserConfigFn): UserConfigFn;
22304
22304
  declare function defineConfig(options: UserConfigExport): UserConfigExport; //#endregion
22305
22305
  //#endregion
22306
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/index.d.mts
22306
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/index.d.mts
22307
22307
  //#region src/build.d.ts
22308
22308
  /**
22309
22309
  * Build with tsdown.
@@ -1,8 +1,8 @@
1
- import { c as globalLogger } from "./main-75lC0Mio.js";
2
- import { t as enableDebug } from "./debug-BmAPbhgA-C2YZbwLC.js";
3
- import { a as resolveUserConfig, i as mergeConfig, n as buildWithConfigs, t as build$1 } from "./build-DU-BFLB1-B3vdyT0U.js";
1
+ import { c as globalLogger } from "./main-CC95VQtR.js";
2
+ import { t as enableDebug } from "./debug-BmAPbhgA-ClibQzj1.js";
3
+ import { a as resolveUserConfig, i as mergeConfig, n as buildWithConfigs, t as build$1 } from "./build-DU-BFLB1-B3WPwpFM.js";
4
4
  import * as Rolldown from "@voidzero-dev/vite-plus-core/rolldown";
5
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/config.mjs
5
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/config.mjs
6
6
  function defineConfig(options) {
7
7
  return options;
8
8
  }
@@ -5,7 +5,7 @@ import readline from "node:readline";
5
5
  import { spawn } from "node:child_process";
6
6
  import { delimiter, dirname, normalize, resolve } from "node:path";
7
7
  import { PassThrough } from "node:stream";
8
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/general-D3muxt2f.mjs
8
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/general-D3muxt2f.mjs
9
9
  const picomatch = createRequire(import.meta.url)("picomatch");
10
10
  function toArray(val, defaultValue) {
11
11
  if (Array.isArray(val)) return val;
@@ -169,7 +169,7 @@ const { Ansis, fg, bg, rgb, bgRgb, hex, bgHex, reset, inverse, hidden, visible,
169
169
  module.exports = w, w.default = w;
170
170
  })))(), 1)).default;
171
171
  //#endregion
172
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/logger-uV8l1UFa.mjs
172
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/logger-uV8l1UFa.mjs
173
173
  const LogLevels = {
174
174
  silent: 0,
175
175
  error: 1,
@@ -293,7 +293,7 @@ function hue2rgb(p, q, t) {
293
293
  return p;
294
294
  }
295
295
  //#endregion
296
- //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_6d24acb02fd70894e0199c3c726026ee/node_modules/tsdown/dist/package-CBgnLfjl.mjs
296
+ //#region ../../node_modules/.pnpm/tsdown@0.21.7_@arethetypeswrong+core@0.18.2_@tsdown+css@0.21.7_@tsdown+exe@0.21.7_@type_1d7f06c329f60405b9b915ac0abfe958/node_modules/tsdown/dist/package-CBgnLfjl.mjs
297
297
  var version = "0.21.7";
298
298
  //#endregion
299
299
  //#region ../../node_modules/.pnpm/tinyexec@1.0.4/node_modules/tinyexec/dist/main.mjs
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
- import { _ as yellow, c as globalLogger, m as hex, r as version, t as R, u as blue } from "./main-75lC0Mio.js";
3
- import { t as enableDebug } from "./debug-BmAPbhgA-C2YZbwLC.js";
2
+ import { _ as yellow, c as globalLogger, m as hex, r as version, t as R, u as blue } from "./main-CC95VQtR.js";
3
+ import { t as enableDebug } from "./debug-BmAPbhgA-ClibQzj1.js";
4
4
  import module, { createRequire } from "node:module";
5
5
  import process$1 from "node:process";
6
6
  import { VERSION } from "@voidzero-dev/vite-plus-core/rolldown";
@@ -630,7 +630,7 @@ cli.command("[...files]", "Bundle files", {
630
630
  }).option("-c, --config <filename>", "Use a custom config file").option("--config-loader <loader>", "Config loader to use: auto, native, unrun", { default: "auto" }).option("--no-config", "Disable config file").option("-f, --format <format>", "Bundle format: esm, cjs, iife, umd", { default: "esm" }).option("--clean", "Clean output directory, --no-clean to disable").option("--deps.never-bundle <module>", "Mark dependencies as external").option("--minify", "Minify output").option("--devtools", "Enable devtools integration").option("--debug [feat]", "Show debug logs").option("--target <target>", "Bundle target, e.g \"es2015\", \"esnext\"").option("-l, --logLevel <level>", "Set log level: info, warn, error, silent").option("--fail-on-warn", "Fail on warnings", { default: true }).option("--no-write", "Disable writing files to disk, incompatible with watch mode").option("-d, --out-dir <dir>", "Output directory", { default: "dist" }).option("--treeshake", "Tree-shake bundle", { default: true }).option("--sourcemap", "Generate source map", { default: false }).option("--shims", "Enable cjs and esm shims ", { default: false }).option("--platform <platform>", "Target platform", { default: "node" }).option("--dts", "Generate dts files").option("--publint", "Enable publint", { default: false }).option("--attw", "Enable Are the types wrong integration", { default: false }).option("--unused", "Enable unused dependencies check", { default: false }).option("-w, --watch [path]", "Watch mode").option("--ignore-watch <path>", "Ignore custom paths in watch mode").option("--from-vite [vitest]", "Reuse config from Vite or Vitest").option("--report", "Size report", { default: true }).option("--env.* <value>", "Define compile-time env variables").option("--env-file <file>", "Load environment variables from a file, when used together with --env, variables in --env take precedence").option("--env-prefix <prefix>", "Prefix for env variables to inject into the bundle", { default: "TSDOWN_" }).option("--on-success <command>", "Command to run on success").option("--copy <dir>", "Copy files to output dir").option("--public-dir <dir>", "Alias for --copy, deprecated").option("--tsconfig <tsconfig>", "Set tsconfig path").option("--unbundle", "Unbundle mode").option("--root <dir>", "Root directory of input files").option("--exe", "Bundle as executable").option("-W, --workspace [dir]", "Enable workspace mode").option("-F, --filter <pattern>", "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, flags) => {
631
631
  globalLogger.level = flags.logLevel || "info";
632
632
  globalLogger.info(`${blue`tsdown v${version}`} powered by ${hex("#ff7e17")`rolldown v${VERSION}`}`);
633
- const { build } = await import("./build-DU-BFLB1-BbUKmVW1.js").then((n) => n.r);
633
+ const { build } = await import("./build-DU-BFLB1-DhRv5Umu.js").then((n) => n.r);
634
634
  if (input.length > 0) flags.entry = input;
635
635
  await build(flags);
636
636
  });
@@ -31,7 +31,7 @@ import { GeneralImportGlobOptions, ImportGlobFunction, ImportGlobOptions, KnownA
31
31
 
32
32
  //#region \0rolldown/runtime.js
33
33
  //#endregion
34
- //#region ../../../node_modules/.pnpm/@vitejs+devtools@0.1.11_@pnpm+logger@1001.0.1_typescript@6.0.2_vite@packages+core/node_modules/@vitejs/devtools/dist/cli-commands.d.ts
34
+ //#region ../../../node_modules/.pnpm/@vitejs+devtools@0.1.13_@pnpm+logger@1001.0.1_typescript@6.0.2_vite@packages+core/node_modules/@vitejs/devtools/dist/cli-commands.d.ts
35
35
  //#region src/node/cli-commands.d.ts
36
36
  interface StartOptions {
37
37
  root?: string;
@@ -41,7 +41,7 @@ interface StartOptions {
41
41
  open?: boolean;
42
42
  }
43
43
  //#endregion
44
- //#region ../../../node_modules/.pnpm/@vitejs+devtools@0.1.11_@pnpm+logger@1001.0.1_typescript@6.0.2_vite@packages+core/node_modules/@vitejs/devtools/dist/config.d.ts
44
+ //#region ../../../node_modules/.pnpm/@vitejs+devtools@0.1.13_@pnpm+logger@1001.0.1_typescript@6.0.2_vite@packages+core/node_modules/@vitejs/devtools/dist/config.d.ts
45
45
  //#region src/node/config.d.ts
46
46
  interface DevToolsConfig extends Partial<StartOptions> {
47
47
  enabled: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voidzero-dev/vite-plus-core",
3
- "version": "0.1.16-alpha.1",
3
+ "version": "0.1.16-alpha.2",
4
4
  "description": "The Unified Toolchain for the Web",
5
5
  "homepage": "https://viteplus.dev/guide",
6
6
  "bugs": {
@@ -112,7 +112,7 @@
112
112
  "@babel/types": "^7.28.5",
113
113
  "@oxc-node/cli": "^0.1.0",
114
114
  "@oxc-node/core": "^0.1.0",
115
- "@vitejs/devtools": "^0.1.11",
115
+ "@vitejs/devtools": "^0.1.13",
116
116
  "es-module-lexer": "^1.7.0",
117
117
  "hookable": "^6.0.1",
118
118
  "magic-string": "^0.30.21",
@@ -129,7 +129,7 @@
129
129
  "tree-kill": "^1.2.2",
130
130
  "tsdown": "^0.21.7",
131
131
  "rolldown": "1.0.0-rc.13",
132
- "vite": "npm:@voidzero-dev/vite-plus-core@0.1.16-alpha.1"
132
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.1.16-alpha.2"
133
133
  },
134
134
  "peerDependencies": {
135
135
  "@arethetypeswrong/core": "^0.18.1",
@@ -1,2 +0,0 @@
1
- import { r as build_exports } from "./build-DU-BFLB1-B3vdyT0U.js";
2
- export { build_exports as r };