@xylabs/ts-scripts-yarn3 7.1.4 → 7.1.5

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.
@@ -1935,8 +1935,12 @@ var packageLint = async (fix2 = false, verbose = false, cache = true) => {
1935
1935
  cache
1936
1936
  });
1937
1937
  const files = getFiles(cwd4(), ignoreFolders);
1938
+ console.log(chalk31.green(`Linting ${pkg} [files = ${files.length}]`));
1938
1939
  if (verbose) {
1939
- console.log(chalk31.green(`Linting ${pkg} [files = ${files.length}]`));
1940
+ for (const file of files) {
1941
+ console.log(chalk31.gray(` ${file}
1942
+ `));
1943
+ }
1940
1944
  }
1941
1945
  const lintResults = await engine.lintFiles(files);
1942
1946
  dumpMessages(lintResults);