@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/actions/index.mjs +4 -3
- package/dist/actions/index.mjs.map +1 -1
- package/dist/actions/package/cycle.mjs +4 -3
- package/dist/actions/package/cycle.mjs.map +1 -1
- package/dist/actions/package/index.mjs +4 -3
- package/dist/actions/package/index.mjs.map +1 -1
- package/dist/bin/package/cycle.mjs +4 -3
- package/dist/bin/package/cycle.mjs.map +1 -1
- package/dist/bin/xy.mjs +3 -1
- package/dist/bin/xy.mjs.map +1 -1
- package/dist/index.mjs +7 -4
- package/dist/index.mjs.map +1 -1
- package/dist/xy/index.mjs +3 -1
- package/dist/xy/index.mjs.map +1 -1
- package/dist/xy/xy.mjs +3 -1
- package/dist/xy/xy.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
|
@@ -1869,9 +1869,10 @@ var packageCycle = /* @__PURE__ */ __name(async ({ verbose = false }) => {
|
|
|
1869
1869
|
]
|
|
1870
1870
|
},
|
|
1871
1871
|
validate: true,
|
|
1872
|
-
doNotFollow:
|
|
1873
|
-
|
|
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);
|