@xylabs/ts-scripts-yarn3 7.0.0-rc.13 → 7.0.0-rc.14

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.
@@ -1448,9 +1448,9 @@ var getCompilerOptions = (options = {}, fileName = "tsconfig.json") => {
1448
1448
  };
1449
1449
 
1450
1450
  // src/actions/package/compile/packageCompileTsc.ts
1451
- var packageCompileTsc = (entries, folder = "src", config2 = {}, compilerOptionsParam) => {
1451
+ var packageCompileTsc = (entries, folder = "src", config2 = {}, compilerOptionsParam, verbose = false) => {
1452
1452
  const pkg = process.env.INIT_CWD ?? cwd2();
1453
- const verbose = config2?.verbose ?? false;
1453
+ const resolvedVerbose = verbose ?? config2?.verbose ?? false;
1454
1454
  const compilerOptions = {
1455
1455
  ...getCompilerOptions({
1456
1456
  removeComments: false,
@@ -1464,7 +1464,7 @@ var packageCompileTsc = (entries, folder = "src", config2 = {}, compilerOptionsP
1464
1464
  noEmit: false
1465
1465
  };
1466
1466
  console.log(chalk26.green(`Validating Files: ${entries.length}`));
1467
- if (verbose) {
1467
+ if (resolvedVerbose) {
1468
1468
  for (const entry of entries) {
1469
1469
  console.log(chalk26.grey(`Validating: ${entry}`));
1470
1470
  }
@@ -1559,7 +1559,7 @@ var compileFolder = async (folder, entries, options, verbose) => {
1559
1559
  tsconfig: "tsconfig.json",
1560
1560
  ...options
1561
1561
  });
1562
- const validationResult = packageCompileTsc(entries);
1562
+ const validationResult = packageCompileTsc(entries, folder, void 0, void 0, verbose);
1563
1563
  if (validationResult !== 0) {
1564
1564
  console.error(`Compile:Validation had ${validationResult} errors`);
1565
1565
  return validationResult;