@cadenza.io/core 1.7.7 → 1.7.8
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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1878,9 +1878,9 @@ var GraphRunner = class extends SignalEmitter {
|
|
|
1878
1878
|
if (this.debug) {
|
|
1879
1879
|
console.log(
|
|
1880
1880
|
`${this.isMeta ? "Meta" : ""}Runner added tasks`,
|
|
1881
|
-
allTasks,
|
|
1881
|
+
allTasks.map((t) => t.name),
|
|
1882
1882
|
"with context",
|
|
1883
|
-
ctx
|
|
1883
|
+
ctx.getFullContext()
|
|
1884
1884
|
);
|
|
1885
1885
|
}
|
|
1886
1886
|
allTasks.forEach(
|