@xylabs/ts-scripts-yarn3 7.1.0 → 7.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/fix.mjs +1 -1
- package/dist/actions/fix.mjs.map +1 -1
- package/dist/actions/index.mjs +1 -1
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/lint.mjs +1 -1
- package/dist/actions/lint.mjs.map +1 -1
- package/dist/bin/xy.mjs +1 -1
- package/dist/bin/xy.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/xy/index.mjs +1 -1
- package/dist/xy/index.mjs.map +1 -1
- package/dist/xy/xy.mjs +1 -1
- package/dist/xy/xy.mjs.map +1 -1
- package/dist/xy/xyLintCommands.mjs +1 -1
- package/dist/xy/xyLintCommands.mjs.map +1 -1
- package/package.json +37 -37
package/dist/index.mjs
CHANGED
|
@@ -1147,7 +1147,7 @@ var lintAllPackages = ({ fix: fix2 = false } = {}) => {
|
|
|
1147
1147
|
const start = Date.now();
|
|
1148
1148
|
const fixOptions = fix2 ? ["--fix"] : [];
|
|
1149
1149
|
const result = runSteps(`${fix2 ? "Fix" : "Lint"} [All-Packages]`, [
|
|
1150
|
-
["yarn", ["eslint", ...fixOptions]]
|
|
1150
|
+
["yarn", ["eslint", "--cache", "--cache-location", ".eslintcache", "--cache-strategy", "content", ...fixOptions]]
|
|
1151
1151
|
]);
|
|
1152
1152
|
console.log(chalk19.gray(`${fix2 ? "Fixed in" : "Linted in"} [${chalk19.magenta(((Date.now() - start) / 1e3).toFixed(2))}] ${chalk19.gray("seconds")}`));
|
|
1153
1153
|
return result;
|