@xylabs/ts-scripts-yarn3 6.3.1 → 6.3.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/index.mjs CHANGED
@@ -1869,9 +1869,10 @@ var packageCycle = /* @__PURE__ */ __name(async ({ verbose = false }) => {
1869
1869
  ]
1870
1870
  },
1871
1871
  validate: true,
1872
- doNotFollow: {
1873
- path: "node_modules"
1874
- },
1872
+ doNotFollow: [
1873
+ "node_modules",
1874
+ "packages"
1875
+ ],
1875
1876
  tsPreCompilationDeps: false,
1876
1877
  combinedDependencies: true,
1877
1878
  outputType: verbose ? "text" : "err"
@@ -2748,7 +2749,9 @@ var xyLintCommands = /* @__PURE__ */ __name((args) => {
2748
2749
  }, (argv) => {
2749
2750
  const start = Date.now();
2750
2751
  if (argv.verbose) console.log("Cycle");
2751
- process.exitCode = cycle();
2752
+ process.exitCode = cycle({
2753
+ pkg: argv.package
2754
+ });
2752
2755
  console.log(chalk32.blue(`Finished in ${Date.now() - start}ms`));
2753
2756
  }).command("lint [package]", "Lint - Run Eslint", (yargs2) => {
2754
2757
  return packagePositionalParam(yargs2);