@xylabs/ts-scripts-yarn3 7.1.2 → 7.1.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/compile.mjs +1 -1
- package/dist/actions/compile.mjs.map +1 -1
- package/dist/actions/index.mjs +1 -1
- package/dist/actions/index.mjs.map +1 -1
- package/dist/bin/xy.mjs +1 -1
- package/dist/bin/xy.mjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/xy/index.mjs +1 -1
- package/dist/xy/index.mjs.map +1 -1
- package/dist/xy/xy.mjs +1 -1
- package/dist/xy/xy.mjs.map +1 -1
- package/dist/xy/xyBuildCommands.mjs +1 -1
- package/dist/xy/xyBuildCommands.mjs.map +1 -1
- package/package.json +2 -2
package/dist/bin/xy.mjs
CHANGED
|
@@ -472,7 +472,7 @@ var compileAll = ({
|
|
|
472
472
|
const start = Date.now();
|
|
473
473
|
const verboseOptions = verbose ? ["--verbose"] : ["--no-verbose"];
|
|
474
474
|
const targetOptions = target ? ["-t", target] : [];
|
|
475
|
-
const incrementalOptions = incremental ? ["--since", "-
|
|
475
|
+
const incrementalOptions = incremental ? ["--since", "-Ap", "--topological-dev"] : ["--parallel", "-Ap", "--topological-dev"];
|
|
476
476
|
const jobsOptions = jobs ? ["-j", `${jobs}`] : [];
|
|
477
477
|
if (jobs) {
|
|
478
478
|
console.log(chalk9.blue(`Jobs set to [${jobs}]`));
|