@xylabs/ts-scripts-yarn3 4.0.0-rc.5 → 4.0.0-rc.6

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.
@@ -1419,7 +1419,7 @@ var buildEntries = /* @__PURE__ */ __name((folder, entryMode, verbose = false) =
1419
1419
  }, "buildEntries");
1420
1420
 
1421
1421
  // src/actions/package/compile/packageCompileTsup.ts
1422
- var compileFolder = /* @__PURE__ */ __name(async (folder, entryMode = "single", options, verbose) => {
1422
+ var compileFolder = /* @__PURE__ */ __name(async (folder, entryMode = "single", options, _verbose) => {
1423
1423
  const outDir = options?.outDir ?? "dist";
1424
1424
  const entry = buildEntries(folder, entryMode);
1425
1425
  const optionsResult = defineConfig({
@@ -1491,10 +1491,7 @@ var packageCompileTsup = /* @__PURE__ */ __name(async (config2) => {
1491
1491
  sourcemap: true,
1492
1492
  target: "esnext"
1493
1493
  };
1494
- return await packageCompileTsc(true, {
1495
- publint: false,
1496
- verbose
1497
- }) || (await Promise.all(Object.entries(compileForNode).map(async ([folder, options]) => {
1494
+ return (await Promise.all(Object.entries(compileForNode).map(async ([folder, options]) => {
1498
1495
  const inEsBuildOptions = typeof compile2?.node?.esbuildOptions === "object" ? compile2?.node?.esbuildOptions : {};
1499
1496
  return folder ? await compileFolder(folder, compile2?.entryMode, {
1500
1497
  ...standardOptions,