@xylabs/ts-scripts-yarn3 7.1.5 → 7.1.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.
- package/dist/actions/index.mjs +1 -2
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/package/index.mjs +1 -2
- package/dist/actions/package/index.mjs.map +1 -1
- package/dist/actions/package/lint.mjs +1 -2
- package/dist/actions/package/lint.mjs.map +1 -1
- package/dist/bin/package/fix.mjs +1 -2
- package/dist/bin/package/fix.mjs.map +1 -1
- package/dist/bin/package/lint-verbose.mjs +1 -2
- package/dist/bin/package/lint-verbose.mjs.map +1 -1
- package/dist/bin/package/lint.mjs +1 -2
- package/dist/bin/package/lint.mjs.map +1 -1
- package/dist/bin/package/relint.mjs +1 -2
- package/dist/bin/package/relint.mjs.map +1 -1
- package/dist/index.mjs +1 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/actions/index.mjs
CHANGED
|
@@ -1938,8 +1938,7 @@ var packageLint = async (fix2 = false, verbose = false, cache = true) => {
|
|
|
1938
1938
|
console.log(chalk31.green(`Linting ${pkg} [files = ${files.length}]`));
|
|
1939
1939
|
if (verbose) {
|
|
1940
1940
|
for (const file of files) {
|
|
1941
|
-
console.log(chalk31.gray(` ${file}
|
|
1942
|
-
`));
|
|
1941
|
+
console.log(chalk31.gray(` ${file}`));
|
|
1943
1942
|
}
|
|
1944
1943
|
}
|
|
1945
1944
|
const lintResults = await engine.lintFiles(files);
|