@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/xy/xy.mjs CHANGED
@@ -455,17 +455,6 @@ var build = /* @__PURE__ */ __name(async ({ incremental, jobs, target, verbose,
455
455
  "tsup"
456
456
  ]
457
457
  ],
458
- [
459
- "yarn",
460
- [
461
- "xy",
462
- "cycle",
463
- ...pkgOptions,
464
- ...verboseOptions,
465
- ...jobsOptions,
466
- ...incrementalOptions
467
- ]
468
- ],
469
458
  [
470
459
  "yarn",
471
460
  [
@@ -1870,7 +1859,9 @@ var xyLintCommands = /* @__PURE__ */ __name((args) => {
1870
1859
  }, (argv) => {
1871
1860
  const start = Date.now();
1872
1861
  if (argv.verbose) console.log("Cycle");
1873
- process.exitCode = cycle();
1862
+ process.exitCode = cycle({
1863
+ pkg: argv.package
1864
+ });
1874
1865
  console.log(chalk21.blue(`Finished in ${Date.now() - start}ms`));
1875
1866
  }).command("lint [package]", "Lint - Run Eslint", (yargs2) => {
1876
1867
  return packagePositionalParam(yargs2);