@xylabs/ts-scripts-yarn3 6.3.1 → 6.3.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/index.mjs CHANGED
@@ -566,17 +566,6 @@ var build = /* @__PURE__ */ __name(async ({ incremental, jobs, target, verbose,
566
566
  "tsup"
567
567
  ]
568
568
  ],
569
- [
570
- "yarn",
571
- [
572
- "xy",
573
- "cycle",
574
- ...pkgOptions,
575
- ...verboseOptions,
576
- ...jobsOptions,
577
- ...incrementalOptions
578
- ]
579
- ],
580
569
  [
581
570
  "yarn",
582
571
  [
@@ -1868,9 +1857,10 @@ var packageCycle = /* @__PURE__ */ __name(async ({ verbose = false }) => {
1868
1857
  }
1869
1858
  ]
1870
1859
  },
1860
+ exclude: "node_modules|packages/.*/packages",
1871
1861
  validate: true,
1872
1862
  doNotFollow: {
1873
- path: "node_modules"
1863
+ path: "node_modules|packages/.*/packages"
1874
1864
  },
1875
1865
  tsPreCompilationDeps: false,
1876
1866
  combinedDependencies: true,
@@ -2748,7 +2738,9 @@ var xyLintCommands = /* @__PURE__ */ __name((args) => {
2748
2738
  }, (argv) => {
2749
2739
  const start = Date.now();
2750
2740
  if (argv.verbose) console.log("Cycle");
2751
- process.exitCode = cycle();
2741
+ process.exitCode = cycle({
2742
+ pkg: argv.package
2743
+ });
2752
2744
  console.log(chalk32.blue(`Finished in ${Date.now() - start}ms`));
2753
2745
  }).command("lint [package]", "Lint - Run Eslint", (yargs2) => {
2754
2746
  return packagePositionalParam(yargs2);