@xylabs/ts-scripts-yarn3 5.0.35 → 5.0.36

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.
@@ -1505,6 +1505,9 @@ var packageCompileTscTypes = /* @__PURE__ */ __name((folder = "src", { verbose }
1505
1505
  // src/actions/package/compile/packageCompileTsup.ts
1506
1506
  var compileFolder = /* @__PURE__ */ __name(async (folder, entryMode = "single", options, types = "tsc", verbose) => {
1507
1507
  const outDir = options?.outDir ?? "dist";
1508
+ if (verbose) {
1509
+ console.log(`compileFolder [${folder}]`);
1510
+ }
1508
1511
  const entry = buildEntries(folder, entryMode);
1509
1512
  const optionsResult = defineConfig({
1510
1513
  bundle: true,
@@ -1532,8 +1535,17 @@ var compileFolder = /* @__PURE__ */ __name(async (folder, entryMode = "single",
1532
1535
  result
1533
1536
  ];
1534
1537
  }))).flat();
1538
+ if (verbose) {
1539
+ console.log(`TSUP:build:start [${folder}] ${types}`);
1540
+ }
1535
1541
  await Promise.all(optionsList.map((options2) => build2(options2)));
1542
+ if (verbose) {
1543
+ console.log(`TSUP:build:stop [${folder}] ${types}`);
1544
+ }
1536
1545
  if (types === "tsc") {
1546
+ if (verbose) {
1547
+ console.log(`Calling packageCompileTscTypes [${folder}] ${types}`);
1548
+ }
1537
1549
  const errors = packageCompileTscTypes(folder, {
1538
1550
  verbose
1539
1551
  }, {