@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/actions/build.mjs +0 -11
- package/dist/actions/build.mjs.map +1 -1
- package/dist/actions/index.mjs +2 -12
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/package/cycle.mjs +2 -1
- package/dist/actions/package/cycle.mjs.map +1 -1
- package/dist/actions/package/index.mjs +2 -1
- package/dist/actions/package/index.mjs.map +1 -1
- package/dist/bin/package/cycle.mjs +2 -1
- package/dist/bin/package/cycle.mjs.map +1 -1
- package/dist/bin/xy.mjs +3 -12
- package/dist/bin/xy.mjs.map +1 -1
- package/dist/index.mjs +5 -13
- package/dist/index.mjs.map +1 -1
- package/dist/xy/index.mjs +3 -12
- package/dist/xy/index.mjs.map +1 -1
- package/dist/xy/xy.mjs +3 -12
- package/dist/xy/xy.mjs.map +1 -1
- package/dist/xy/xyBuildCommands.mjs +0 -11
- package/dist/xy/xyBuildCommands.mjs.map +1 -1
- package/dist/xy/xyLintCommands.mjs +3 -1
- package/dist/xy/xyLintCommands.mjs.map +1 -1
- package/package.json +4 -4
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);
|