@normed/bundle 4.3.1 → 4.3.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.
package/bundles/index.js CHANGED
@@ -69426,7 +69426,7 @@ var esbuilder = {
69426
69426
  const outdir = exampleFile.outfile.basedir;
69427
69427
  const indir = exampleFile.infile.basedir;
69428
69428
  const baseConfig = exampleFile.entryconfig.esbuild;
69429
- const expectingSourcemap = (baseConfig.sourcemap ?? true) && baseConfig.sourcemap !== "inline";
69429
+ const expectingSourcemap = (baseConfig.sourcemap ?? true) && Boolean(baseConfig.sourcemap) && baseConfig.sourcemap !== "inline";
69430
69430
  const jsOutExt = baseConfig.format === "esm" ? "js" : "js";
69431
69431
  const promises = [];
69432
69432
  log_default.verbose("Base Config", JSON.stringify(baseConfig, null, 2));