@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/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);
|