@next-vibe/checker 1.0.14 → 1.0.15

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.
@@ -28160,7 +28160,7 @@ function isViteBuildType(type) {
28160
28160
  return Object.values(ViteBuildTypeEnum).includes(type);
28161
28161
  }
28162
28162
  function isBunBuildType(type) {
28163
- return type === "executable" /* EXECUTABLE */;
28163
+ return Object.values(BunBuildTypeEnum).includes(type);
28164
28164
  }
28165
28165
  var BuildProfileOptions, BuildTypeOptions, BunTargetOptions, SourcemapModeOptions, OutputFormatOptions, ViteMinifyOptions, ViteLibFormatOptions, PackageExportConditionSchema, POST2, builderDefinition, definition_default2;
28166
28166
  var init_definition2 = __esm(() => {
@@ -35295,7 +35295,7 @@ class BunCompiler {
35295
35295
  }
35296
35296
  }
35297
35297
  const sourcemap = bunOptions?.sourcemap || (profileSettings.sourcemap === false ? "none" : profileSettings.sourcemap === true ? "external" : profileSettings.sourcemap);
35298
- const result = await Bun.build({
35298
+ const buildOptions = {
35299
35299
  entrypoints: [entrypointPath],
35300
35300
  outdir: outDir,
35301
35301
  target: bunOptions?.target || "bun",
@@ -35314,7 +35314,8 @@ class BunCompiler {
35314
35314
  banner: bunOptions?.banner,
35315
35315
  footer: bunOptions?.footer,
35316
35316
  bytecode: bunOptions?.bytecode
35317
- });
35317
+ };
35318
+ const result = await Bun.build(buildOptions);
35318
35319
  if (!result.success) {
35319
35320
  const errorMessages = result.logs.filter((log) => log.level === "error").map((log) => log.message).join(`
35320
35321
  `);
@@ -55483,4 +55484,4 @@ export {
55483
55484
  binaryStartTime
55484
55485
  };
55485
55486
 
55486
- //# debugId=726E9B216EB061AF64756E2164756E21
55487
+ //# debugId=1AF93BD04D81CBEE64756E2164756E21