@xylabs/ts-scripts-yarn3 7.1.1 → 7.1.3

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/xy/xy.mjs CHANGED
@@ -470,7 +470,7 @@ var compileAll = ({
470
470
  const start = Date.now();
471
471
  const verboseOptions = verbose ? ["--verbose"] : ["--no-verbose"];
472
472
  const targetOptions = target ? ["-t", target] : [];
473
- const incrementalOptions = incremental ? ["--since", "-Apt", "--topological-dev"] : ["--parallel", "-Apt", "--topological-dev"];
473
+ const incrementalOptions = incremental ? ["--since", "-Ap", "--topological-dev"] : ["--parallel", "-Ap", "--topological-dev"];
474
474
  const jobsOptions = jobs ? ["-j", `${jobs}`] : [];
475
475
  if (jobs) {
476
476
  console.log(chalk9.blue(`Jobs set to [${jobs}]`));
@@ -1053,7 +1053,7 @@ var lintAllPackages = ({ fix: fix2 = false } = {}) => {
1053
1053
  const start = Date.now();
1054
1054
  const fixOptions = fix2 ? ["--fix"] : [];
1055
1055
  const result = runSteps(`${fix2 ? "Fix" : "Lint"} [All-Packages]`, [
1056
- ["yarn", ["eslint", ...fixOptions]]
1056
+ ["yarn", ["eslint", "--cache", "--cache-location", ".eslintcache", "--cache-strategy", "content", ...fixOptions]]
1057
1057
  ]);
1058
1058
  console.log(chalk17.gray(`${fix2 ? "Fixed in" : "Linted in"} [${chalk17.magenta(((Date.now() - start) / 1e3).toFixed(2))}] ${chalk17.gray("seconds")}`));
1059
1059
  return result;