@xylabs/ts-scripts-yarn3 6.1.1 → 6.1.2
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 +2 -0
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/package/index.mjs +2 -0
- package/dist/actions/package/index.mjs.map +1 -1
- package/dist/actions/package/lint.mjs +2 -0
- package/dist/actions/package/lint.mjs.map +1 -1
- package/dist/bin/package/fix.mjs +2 -0
- package/dist/bin/package/fix.mjs.map +1 -1
- package/dist/bin/package/lint.mjs +2 -0
- package/dist/bin/package/lint.mjs.map +1 -1
- package/dist/bin/package/relint.mjs +2 -0
- package/dist/bin/package/relint.mjs.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/dist/types/actions/package/lint.d.ts.map +1 -1
- package/package.json +8 -8
package/dist/actions/index.mjs
CHANGED
|
@@ -2103,6 +2103,7 @@ function getFiles(dir, ignoreFolders) {
|
|
|
2103
2103
|
}
|
|
2104
2104
|
__name(getFiles, "getFiles");
|
|
2105
2105
|
var packageLint = /* @__PURE__ */ __name(async (fix2 = false, verbose = false, cache = true) => {
|
|
2106
|
+
const start = Date.now();
|
|
2106
2107
|
const pkg = process.env.INIT_CWD;
|
|
2107
2108
|
const configPath = await getRootESLintConfig();
|
|
2108
2109
|
const { default: eslintConfig } = await import(configPath.href);
|
|
@@ -2133,6 +2134,7 @@ var packageLint = /* @__PURE__ */ __name(async (fix2 = false, verbose = false, c
|
|
|
2133
2134
|
if (fix2) {
|
|
2134
2135
|
await ESLint2.outputFixes(lintResults);
|
|
2135
2136
|
}
|
|
2137
|
+
console.log(chalk28.green(`Linted ${files.length} files in ${Date.now() - start}ms`));
|
|
2136
2138
|
return lintResults.reduce((prev, lintResult) => prev + lintResult.errorCount, 0);
|
|
2137
2139
|
}, "packageLint");
|
|
2138
2140
|
|